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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/compiler.dart

Issue 21511003: Support symbol literals. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 7 years, 3 months 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 part of dart2js; 5 part of dart2js;
6 6
7 /** 7 /**
8 * If true, print a warning for each method that was resolved, but not 8 * If true, print a warning for each method that was resolved, but not
9 * compiled. 9 * compiled.
10 */ 10 */
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 ClassElement stringClass; 416 ClassElement stringClass;
417 ClassElement functionClass; 417 ClassElement functionClass;
418 ClassElement nullClass; 418 ClassElement nullClass;
419 ClassElement listClass; 419 ClassElement listClass;
420 ClassElement typeClass; 420 ClassElement typeClass;
421 ClassElement mapClass; 421 ClassElement mapClass;
422 ClassElement symbolClass; 422 ClassElement symbolClass;
423 ClassElement stackTraceClass; 423 ClassElement stackTraceClass;
424 ClassElement typedDataClass; 424 ClassElement typedDataClass;
425 425
426 // Initialized after mirrorSystemClass has been resolved. 426 // Initialized after symbolClass has been resolved.
427 FunctionElement symbolConstructor; 427 FunctionElement symbolConstructor;
428 428
429 // Initialized when dart:mirrors is loaded. 429 // Initialized when dart:mirrors is loaded.
430 ClassElement mirrorSystemClass; 430 ClassElement mirrorSystemClass;
431 431
432 // Initialized when dart:mirrors is loaded. 432 // Initialized when dart:mirrors is loaded.
433 ClassElement mirrorsUsedClass; 433 ClassElement mirrorsUsedClass;
434 434
435 // Initialized after mirrorSystemClass has been resolved. 435 // Initialized after mirrorSystemClass has been resolved.
436 FunctionElement mirrorSystemGetNameFunction; 436 FunctionElement mirrorSystemGetNameFunction;
(...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after
1559 1559
1560 void close() {} 1560 void close() {}
1561 1561
1562 toString() => name; 1562 toString() => name;
1563 1563
1564 /// Convenience method for getting an [api.CompilerOutputProvider]. 1564 /// Convenience method for getting an [api.CompilerOutputProvider].
1565 static NullSink outputProvider(String name, String extension) { 1565 static NullSink outputProvider(String name, String extension) {
1566 return new NullSink('$name.$extension'); 1566 return new NullSink('$name.$extension');
1567 } 1567 }
1568 } 1568 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698