Skip to content

Commit

Permalink
Merge pull request WebAssembly#175 from WebAssembly/copyright
Browse files Browse the repository at this point in the history
Remove bogus copyright notices
  • Loading branch information
rossberg committed Nov 13, 2015
2 parents 15bbc4a + 3458dcb commit 8358778
Show file tree
Hide file tree
Showing 30 changed files with 2 additions and 113 deletions.
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

0 comments on commit 8358778

Please sign in to comment.