diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-23 14:46:30 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-24 10:38:11 -0400 |
commit | 1de16af1f3916c94b46e28fb22584dc1e7c17958 (patch) | |
tree | 6ad015cf2188bc7df65f1910c539f3c79dab09ff /js | |
parent | dcaf9b3227f7bd77e14aafe957957df6cfbffb86 (diff) |
Change copyrights to be 'Deno authors'.
Diffstat (limited to 'js')
-rw-r--r-- | js/assets.ts | 3 | ||||
-rw-r--r-- | js/deno.d.ts | 3 | ||||
-rw-r--r-- | js/deno.ts | 3 | ||||
-rw-r--r-- | js/dispatch.ts | 3 | ||||
-rw-r--r-- | js/fetch.ts | 3 | ||||
-rw-r--r-- | js/globals.ts | 3 | ||||
-rw-r--r-- | js/main.ts | 1 | ||||
-rw-r--r-- | js/mock_runtime.js | 2 | ||||
-rw-r--r-- | js/os.ts | 3 | ||||
-rw-r--r-- | js/runtime.ts | 3 | ||||
-rw-r--r-- | js/tests.ts | 3 | ||||
-rw-r--r-- | js/timers.ts | 3 | ||||
-rw-r--r-- | js/types.ts | 3 | ||||
-rw-r--r-- | js/util.ts | 3 | ||||
-rw-r--r-- | js/v8_source_maps.ts | 3 |
15 files changed, 16 insertions, 26 deletions
diff --git a/js/assets.ts b/js/assets.ts index e247049c0..2eabbc5f9 100644 --- a/js/assets.ts +++ b/js/assets.ts @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. // tslint:disable-next-line:no-reference /// <reference path="plugins.d.ts" /> diff --git a/js/deno.d.ts b/js/deno.d.ts index a54dab851..f2b726d8e 100644 --- a/js/deno.d.ts +++ b/js/deno.d.ts @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. type MessageCallback = (msg: Uint8Array) => void; interface Deno { diff --git a/js/deno.ts b/js/deno.ts index 595d87709..df1148453 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. // Public deno module. // TODO get rid of deno.d.ts export { pub, sub } from "./dispatch"; diff --git a/js/dispatch.ts b/js/dispatch.ts index 6668014b9..eeb00f38e 100644 --- a/js/dispatch.ts +++ b/js/dispatch.ts @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. import { typedArrayToArrayBuffer } from "./util"; import { deno as fbs } from "./msg_generated"; diff --git a/js/fetch.ts b/js/fetch.ts index c59d41bf5..7fe7be22b 100644 --- a/js/fetch.ts +++ b/js/fetch.ts @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. import { assert, log, diff --git a/js/globals.ts b/js/globals.ts index 81e6bdf12..c36eaff60 100644 --- a/js/globals.ts +++ b/js/globals.ts @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. // If you use the eval function indirectly, by invoking it via a reference // other than eval, as of ECMAScript 5 it works in the global scope rather than diff --git a/js/main.ts b/js/main.ts index 728c46e80..818e6aa12 100644 --- a/js/main.ts +++ b/js/main.ts @@ -1,3 +1,4 @@ +// Copyright 2018 the Deno authors. All rights reserved. MIT license. // tslint:disable-next-line:no-reference /// <reference path="deno.d.ts" /> import { flatbuffers } from "flatbuffers"; diff --git a/js/mock_runtime.js b/js/mock_runtime.js index 934fbeab4..313a7fac7 100644 --- a/js/mock_runtime.js +++ b/js/mock_runtime.js @@ -1,3 +1,5 @@ +// Copyright 2018 the Deno authors. All rights reserved. MIT license. + // A simple runtime that doesn't involve typescript or protobufs to test // libdeno. Invoked by mock_runtime_test.cc @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. import { ModuleInfo } from "./types"; import { deno as fbs } from "./msg_generated"; import { assert } from "./util"; diff --git a/js/runtime.ts b/js/runtime.ts index c439fb963..6f2007268 100644 --- a/js/runtime.ts +++ b/js/runtime.ts @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. // Glossary // outputCode = generated javascript code // sourceCode = typescript code (or input javascript code) diff --git a/js/tests.ts b/js/tests.ts index 49e6aa9b3..3e8be12a1 100644 --- a/js/tests.ts +++ b/js/tests.ts @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. // This test is executed as part of integration_test.go // But it can also be run manually: // ./deno tests.ts diff --git a/js/timers.ts b/js/timers.ts index da2cccd89..9f18d2716 100644 --- a/js/timers.ts +++ b/js/timers.ts @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. import { deno as pb } from "./msg.pb"; import { pubInternal, sub } from "./dispatch"; import { assert } from "./util"; diff --git a/js/types.ts b/js/types.ts index d32d9f5a6..ae8ee1e81 100644 --- a/js/types.ts +++ b/js/types.ts @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. export type TypedArray = Uint8Array | Float32Array | Int32Array; export interface ModuleInfo { diff --git a/js/util.ts b/js/util.ts index 05b243427..09d74aeb0 100644 --- a/js/util.ts +++ b/js/util.ts @@ -1,5 +1,4 @@ -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. //import { debug } from "./main"; const debug = false; diff --git a/js/v8_source_maps.ts b/js/v8_source_maps.ts index 2384f34dc..956ffbe82 100644 --- a/js/v8_source_maps.ts +++ b/js/v8_source_maps.ts @@ -1,6 +1,5 @@ // Copyright 2014 Evan Wallace -// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> -// All rights reserved. MIT License. +// Copyright 2018 the Deno authors. All rights reserved. MIT license. // Originated from source-map-support but has been heavily modified for deno. import { SourceMapConsumer, MappedPosition } from "source-map"; import * as base64 from "base64-js"; |