diff options
author | Bert Belder <bertbelder@gmail.com> | 2020-01-25 14:31:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-25 14:31:42 +0100 |
commit | 37a7b01d5cf555bbc57d74dc9e04000115ec4867 (patch) | |
tree | a9c4148403081e3471f5233646403d64bb7f7dec /core/any_error.rs | |
parent | c21e0008b5f8aa6431295a747caa69d3ccb3bfaa (diff) |
Refactor error tracking and scope juggling in deno_core (#3783)
Diffstat (limited to 'core/any_error.rs')
-rw-r--r-- | core/any_error.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/any_error.rs b/core/any_error.rs index 60c508e7d..34709e77f 100644 --- a/core/any_error.rs +++ b/core/any_error.rs @@ -1,4 +1,7 @@ -use std::any::{Any, TypeId}; +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. + +use std::any::Any; +use std::any::TypeId; use std::convert::From; use std::error::Error; use std::fmt; |