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

Unified Diff: dart/lib/compiler/implementation/ssa/value_set.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/ssa/value_set.dart
diff --git a/dart/lib/compiler/implementation/ssa/value_set.dart b/dart/lib/compiler/implementation/ssa/value_set.dart
index 98a1d5322cff04611f24d8d43369c3f8c1ee4d74..eef133b5ddbc43f5d9fa9dd9a03eba6b3dc9cdff 100644
--- a/dart/lib/compiler/implementation/ssa/value_set.dart
+++ b/dart/lib/compiler/implementation/ssa/value_set.dart
@@ -9,7 +9,7 @@ class ValueSet {
ValueSet() : table = new List<HInstruction>(8);
bool isEmpty() => size == 0;
- int get length() => size;
+ int get length => size;
void add(HInstruction instruction) {
assert(lookup(instruction) === null);
« no previous file with comments | « dart/lib/compiler/implementation/ssa/types_propagation.dart ('k') | dart/lib/compiler/implementation/tools/mini_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698