Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove bogus copyright notices #175

Merged
merged 1 commit into from
Nov 13, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions ml-proto/given/lib.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2014 Andreas Rossberg
*)

module List =
struct
let rec take n xs =
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/given/lib.mli
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2014 Andreas Rossberg
*)

(* Things that should be in the OCaml library... *)

module List :
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/given/source.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

type pos = {file : string; line : int; column : int}
type region = {left : pos; right : pos}
type 'a phrase = { at : region; it : 'a}
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/given/source.mli
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

type pos = {file : string; line : int; column : int}
type region = {left : pos; right : pos}
type 'a phrase = {at : region; it : 'a}
Expand Down
6 changes: 1 addition & 5 deletions ml-proto/host/flags.ml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
(*
* (c) 2015 Andreas Rossberg
*)

let name = "wasm"
let version = "0.1"
let version = "0.2"

let interactive = ref false
let trace = ref false
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/host/lexer.mli
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

val convert_pos : Lexing.position -> Source.pos

val token : Lexing.lexbuf -> Parser.token (* raises Source.Error *)
4 changes: 0 additions & 4 deletions ml-proto/host/lexer.mll
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

{
open Parser
open Ast
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/host/main.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

let name = "wasm"
let version = "0.1"

Expand Down
4 changes: 0 additions & 4 deletions ml-proto/host/parser.mly
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
/*
* (c) 2015 Andreas Rossberg
*/

%{
open Source
open Ast
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/host/print.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

open Ast
open Source
open Printf
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/host/print.mli
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

val print_module : Ast.module_ -> unit
val print_module_sig : Ast.module_ -> unit
val print_value : Values.value option -> unit
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/host/script.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

open Source


Expand Down
4 changes: 0 additions & 4 deletions ml-proto/host/script.mli
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

type command = command' Source.phrase
and command' =
| Define of Ast.module_
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/spec/arithmetic.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

open Types
open Values

Expand Down
4 changes: 0 additions & 4 deletions ml-proto/spec/arithmetic.mli
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

open Values

exception TypeError of int * value * Types.value_type
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/spec/ast.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

(*
* Throughout the implementation we use consistent naming conventions for
* syntactic elements, associated with the types defined here and in a few
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/spec/check.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

open Ast
open Source
open Types
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/spec/check.mli
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

exception Invalid of Source.region * string

val check_module : Ast.module_ -> unit (* raise Invalid *)
4 changes: 0 additions & 4 deletions ml-proto/spec/error.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

module Make () =
struct
exception Error of Source.region * string
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/spec/error.mli
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

module Make () :
sig
exception Error of Source.region * string
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/spec/eval.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

open Values
open Types
open Ast
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/spec/eval.mli
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

type instance
type value = Values.value
type import = value list -> value option
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/spec/memory.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

open Bigarray
open Types
open Values
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/spec/memory.mli
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

type memory
type t = memory
type address = int64
Expand Down
4 changes: 0 additions & 4 deletions ml-proto/spec/types.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

(* Types *)

type value_type = Int32Type | Int64Type | Float32Type | Float64Type
Expand Down
5 changes: 1 addition & 4 deletions ml-proto/spec/values.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
(*
* (c) 2015 Andreas Rossberg
*)

open Types


Expand All @@ -12,6 +8,7 @@ type ('i32, 'i64, 'f32, 'f64) op =

type value = (I32.t, I64.t, F32.t, F64.t) op


(* Typing *)

let type_of = function
Expand Down
2 changes: 0 additions & 2 deletions ml-proto/test/fac.wast
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
;; (c) 2015 Andreas Rossberg

(module
;; Recursive factorial
(func (param i64) (result i64)
Expand Down
2 changes: 0 additions & 2 deletions ml-proto/test/forward.wast
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
;; (c) 2015 Andreas Rossberg

(module
(export "even" $even)
(export "odd" $odd)
Expand Down
2 changes: 0 additions & 2 deletions ml-proto/test/memory.wast
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
;; (c) 2015 Andreas Rossberg

;; Test memory section structure
(module (memory 0 0))
(module (memory 0 1))
Expand Down
2 changes: 0 additions & 2 deletions ml-proto/test/switch.wast
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
;; (c) 2015 Andreas Rossberg

(module
;; Statement switch
(func $stmt (param $i i32) (result i32)
Expand Down