Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(623)

Side by Side Diff: dart/sdk/lib/_internal/compiler/js_lib/interceptors.dart

Issue 803543002: Resolve libraries against their canonical URI. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r42358. Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library _interceptors; 5 library _interceptors;
6 6
7 import 'shared/embedded_names.dart' show 7 import 'dart:_js_embedded_names' show
8 DISPATCH_PROPERTY_NAME; 8 DISPATCH_PROPERTY_NAME;
9 9
10 import 'dart:collection'; 10 import 'dart:collection';
11 import 'dart:_internal' hide Symbol; 11 import 'dart:_internal' hide Symbol;
12 import "dart:_internal" as _symbol_dev show Symbol; 12 import "dart:_internal" as _symbol_dev show Symbol;
13 import 'dart:_js_helper' show allMatchesInStringUnchecked, 13 import 'dart:_js_helper' show allMatchesInStringUnchecked,
14 Null, 14 Null,
15 JSSyntaxRegExp, 15 JSSyntaxRegExp,
16 Primitives, 16 Primitives,
17 checkInt, 17 checkInt,
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 * Interceptor for unclassified JavaScript objects, typically objects with a 403 * Interceptor for unclassified JavaScript objects, typically objects with a
404 * non-trivial prototype chain. 404 * non-trivial prototype chain.
405 * 405 *
406 * This class also serves as a fallback for unknown JavaScript exceptions. 406 * This class also serves as a fallback for unknown JavaScript exceptions.
407 */ 407 */
408 class UnknownJavaScriptObject extends JavaScriptObject { 408 class UnknownJavaScriptObject extends JavaScriptObject {
409 const UnknownJavaScriptObject(); 409 const UnknownJavaScriptObject();
410 410
411 String toString() => JS('String', 'String(#)', this); 411 String toString() => JS('String', 'String(#)', this);
412 } 412 }
OLDNEW
« no previous file with comments | « dart/pkg/compiler/lib/src/scanner/scanner_task.dart ('k') | dart/sdk/lib/_internal/compiler/js_lib/isolate_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698