diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-02-28 16:19:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-28 16:19:04 -0500 |
commit | b3b989ffdca61403cdd7ca94bd9256159864469e (patch) | |
tree | de53cd24d4ee4726fdd8f66c32ebd6016d3f6ad7 /src/ansi.rs | |
parent | b0c7b54f692ecc866d4f70bfa384631523bbf924 (diff) |
Use deno_core::JSError in deno (#1855)
src/js_errors.rs takes care of source maps and color while
core/js_errors.rs is just the basic struct.
Diffstat (limited to 'src/ansi.rs')
-rw-r--r-- | src/ansi.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ansi.rs b/src/ansi.rs index 73ae00949..f9cd39ac4 100644 --- a/src/ansi.rs +++ b/src/ansi.rs @@ -1,3 +1,4 @@ +// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. use ansi_term::Color::Fixed; use ansi_term::Color::Red; use ansi_term::Style; |