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

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

Issue 10001008: Many type fixes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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: lib/compiler/implementation/elements/elements.dart
diff --git a/lib/compiler/implementation/elements/elements.dart b/lib/compiler/implementation/elements/elements.dart
index a9c34cbc8b6d9097bdb7982aad62141ac5e9f22d..994ff8a7dbd1be63ce336f92d1d6dc567378efd4 100644
--- a/lib/compiler/implementation/elements/elements.dart
+++ b/lib/compiler/implementation/elements/elements.dart
@@ -181,7 +181,7 @@ class Element implements Hashable {
toString() => '$kind(${name.slowToString()})';
bool _isNative = false;
- void setNative() => _isNative = true;
+ void setNative() { _isNative = true; }
bool isNative() => _isNative;
}

Powered by Google App Engine
This is Rietveld 408576698