Skip to content

Commit

Permalink
Change copyrights to be 'Deno authors'.
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jul 24, 2018
1 parent dcaf9b3 commit 1de16af
Show file tree
Hide file tree
Showing 37 changed files with 40 additions and 86 deletions.
1 change: 1 addition & 0 deletions BUILD.gn
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright 2018 the Deno authors. All rights reserved. MIT license.
import("//third_party/v8/gni/v8.gni")
import("//third_party/v8/snapshot_toolchain.gni")
import("//build_extra/flatbuffers/flatbuffer.gni")
Expand Down
2 changes: 2 additions & 0 deletions build_extra/deno.gni
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright 2018 the Deno authors. All rights reserved. MIT license.

template("run_node") {
action(target_name) {
forward_variables_from(invoker, "*")
Expand Down
5 changes: 2 additions & 3 deletions build_extra/rust/get_rust_ldflags.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python
# Copyright 2018 Bert Belder <[email protected]>
# All rights reserved. MIT License.

# Copyright 2018 the Deno authors. All rights reserved. MIT license.
#
# The Rust compiler normally builds source code directly into an executable.
# Internally, object code is produced, and then the (system) linker is called,
# but this all happens under the covers.
Expand Down
3 changes: 1 addition & 2 deletions js/assets.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// 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" />
Expand Down
3 changes: 1 addition & 2 deletions js/deno.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
type MessageCallback = (msg: Uint8Array) => void;

interface Deno {
Expand Down
3 changes: 1 addition & 2 deletions js/deno.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// 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";
Expand Down
3 changes: 1 addition & 2 deletions js/dispatch.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// 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";

Expand Down
3 changes: 1 addition & 2 deletions js/fetch.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
import {
assert,
log,
Expand Down
3 changes: 1 addition & 2 deletions js/globals.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// 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
Expand Down
1 change: 1 addition & 0 deletions js/main.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 2 additions & 0 deletions js/mock_runtime.js
Original file line number Diff line number Diff line change
@@ -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

Expand Down
3 changes: 1 addition & 2 deletions js/os.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// 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";
Expand Down
3 changes: 1 addition & 2 deletions js/runtime.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// 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)
Expand Down
3 changes: 1 addition & 2 deletions js/tests.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// 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
Expand Down
3 changes: 1 addition & 2 deletions js/timers.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// 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";
Expand Down
3 changes: 1 addition & 2 deletions js/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
export type TypedArray = Uint8Array | Float32Array | Int32Array;

export interface ModuleInfo {
Expand Down
3 changes: 1 addition & 2 deletions js/util.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.

//import { debug } from "./main";
const debug = false;
Expand Down
3 changes: 1 addition & 2 deletions js/v8_source_maps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// Copyright 2014 Evan Wallace
// Copyright 2018 Ryan Dahl <[email protected]>
// 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";
Expand Down
22 changes: 1 addition & 21 deletions src/binding.cc
Original file line number Diff line number Diff line change
@@ -1,24 +1,4 @@
/*
Copyright 2018 Ryan Dahl <[email protected]>. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
*/
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand Down
3 changes: 1 addition & 2 deletions src/binding.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#![allow(dead_code)]

extern crate libc;
Expand Down
3 changes: 1 addition & 2 deletions src/deno.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef DENO_H_
#define DENO_H_
#include <stddef.h>
Expand Down
3 changes: 1 addition & 2 deletions src/file_util.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <inttypes.h>
#include <stdio.h>
#include <fstream>
Expand Down
3 changes: 1 addition & 2 deletions src/file_util.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef FILE_UTIL_H_
#define FILE_UTIL_H_

Expand Down
3 changes: 1 addition & 2 deletions src/file_util_test.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include "testing/gtest/include/gtest/gtest.h"

#include "file_util.h"
Expand Down
3 changes: 1 addition & 2 deletions src/flatbuffer_builder.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Bert Belder <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.

#include <stddef.h>
#include <stdint.h>
Expand Down
3 changes: 1 addition & 2 deletions src/flatbuffer_builder.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Bert Belder <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef FLATBUFFER_BUILDER_H_
#define FLATBUFFER_BUILDER_H_

Expand Down
3 changes: 1 addition & 2 deletions src/flatbuffer_builder_test.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Bert Belder <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.

#include <stdint.h>

Expand Down
3 changes: 1 addition & 2 deletions src/from_filesystem.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand Down
3 changes: 1 addition & 2 deletions src/from_snapshot.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand Down
3 changes: 1 addition & 2 deletions src/handlers.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef HANDLERS_H_
#define HANDLERS_H_

Expand Down
3 changes: 1 addition & 2 deletions src/handlers.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
extern crate libc;
#[macro_use]
extern crate log;
Expand Down
3 changes: 1 addition & 2 deletions src/internal.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef INTERNAL_H_
#define INTERNAL_H_

Expand Down
3 changes: 1 addition & 2 deletions src/mock_runtime_test.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include "testing/gtest/include/gtest/gtest.h"

#include "deno.h"
Expand Down
3 changes: 1 addition & 2 deletions src/reply.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.

// When Rust Flatbuffer support is complete this file should be ported
// to Rust and removed: https://github.com/google/flatbuffers/pull/3894
Expand Down
3 changes: 1 addition & 2 deletions src/reply.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.

// TODO(ry) This library handles parsing and sending Flatbuffers. It's written
// in C++ because flatbuffer support for Rust is not quite there. However, once
Expand Down
3 changes: 1 addition & 2 deletions src/snapshot_creator.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Hint: --trace_serializer is a useful debugging flag.
#include <fstream>
#include "deno.h"
Expand Down
3 changes: 1 addition & 2 deletions src/test.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include "deno.h"
#include "testing/gtest/include/gtest/gtest.h"

Expand Down

0 comments on commit 1de16af

Please sign in to comment.