0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2025-03-09 13:38:51 -04:00

update copyrights to 2021 (#620)

This commit is contained in:
Ryan Dahl 2021-02-13 07:31:18 -05:00 committed by GitHub
parent 753b92fd96
commit 50a15085f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 22 additions and 21 deletions

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use libc::c_char; use libc::c_char;
use libc::c_int; use libc::c_int;
use std::ffi::CStr; use std::ffi::CStr;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use std::cell::Cell; use std::cell::Cell;
use std::ffi::c_void; use std::ffi::c_void;

View file

@ -1,3 +1,4 @@
// Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
#include <cassert> #include <cassert>
#include <cstdint> #include <cstdint>
#include <iostream> #include <iostream>

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::isolate::Isolate; use crate::isolate::Isolate;
use crate::Context; use crate::Context;
use crate::HandleScope; use crate::HandleScope;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use std::any::type_name; use std::any::type_name;
use std::convert::From; use std::convert::From;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::Context; use crate::Context;
use crate::Date; use crate::Date;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use std::ffi::c_void; use std::ffi::c_void;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::support::intptr_t; use crate::support::intptr_t;
use crate::AccessorNameGetterCallback; use crate::AccessorNameGetterCallback;
use crate::FunctionCallback; use crate::FunctionCallback;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::support::int; use crate::support::int;
use crate::Context; use crate::Context;
use crate::Data; use crate::Data;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
//! Bindings to the V8 Inspector API. Documentation for the V8 inspector API is //! Bindings to the V8 Inspector API. Documentation for the V8 inspector API is
//! very sparse, so here are a few references for the next sorry soul who has to //! very sparse, so here are a few references for the next sorry soul who has to

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::function::FunctionCallbackInfo; use crate::function::FunctionCallbackInfo;
use crate::isolate_create_params::raw; use crate::isolate_create_params::raw;
use crate::isolate_create_params::CreateParams; use crate::isolate_create_params::CreateParams;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
//! A JSON Parser and Stringifier. //! A JSON Parser and Stringifier.
use crate::Context; use crate::Context;
use crate::HandleScope; use crate::HandleScope;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
//! # Example //! # Example
//! //!

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::support::int; use crate::support::int;
use crate::Name; use crate::Name;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::support::int; use crate::support::int;
use crate::HandleScope; use crate::HandleScope;
use crate::Isolate; use crate::Isolate;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
//! This module's public API exports a number of 'scope' types. //! This module's public API exports a number of 'scope' types.
//! //!

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use std::mem::MaybeUninit; use std::mem::MaybeUninit;
use crate::HandleScope; use crate::HandleScope;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::Local; use crate::Local;
use crate::PrimitiveArray; use crate::PrimitiveArray;
use crate::ScriptOrModule; use crate::ScriptOrModule;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use std::ffi::c_void; use std::ffi::c_void;
use std::ptr::null_mut; use std::ptr::null_mut;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::ArrayBuffer; use crate::ArrayBuffer;
use crate::HandleScope; use crate::HandleScope;
use crate::Local; use crate::Local;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::function::FunctionCallbackArguments; use crate::function::FunctionCallbackArguments;
use crate::function::FunctionCallbackInfo; use crate::function::FunctionCallbackInfo;

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use lazy_static::lazy_static; use lazy_static::lazy_static;
use std::any::type_name; use std::any::type_name;
use std::cell::RefCell; use std::cell::RefCell;