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

Unified Diff: dart/lib/compiler/implementation/namer.dart

Issue 10876008: Remove most superfluous getter arguments from dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: dart/lib/compiler/implementation/namer.dart
diff --git a/dart/lib/compiler/implementation/namer.dart b/dart/lib/compiler/implementation/namer.dart
index 05994920eeadec6afae32f47a9436c43e854040e..be300c2a697f39e35e863fe17f4931b1dbeb37c5 100644
--- a/dart/lib/compiler/implementation/namer.dart
+++ b/dart/lib/compiler/implementation/namer.dart
@@ -9,7 +9,7 @@ class Namer {
final Compiler compiler;
static Set<String> _jsReserved = null;
- Set<String> get jsReserved() {
+ Set<String> get jsReserved {
if (_jsReserved === null) {
_jsReserved = new Set<String>();
_jsReserved.addAll(JsNames.javaScriptKeywords);
« no previous file with comments | « dart/lib/compiler/implementation/lib/isolate_patch.dart ('k') | dart/lib/compiler/implementation/patch_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698