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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/formatter/testsource/test004$A_in.dart

Issue 11238035: Make isEmpty a getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file with co19 issue number. Created 8 years, 2 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: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/formatter/testsource/test004$A_in.dart
diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/formatter/testsource/test004$A_in.dart b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/formatter/testsource/test004$A_in.dart
index 7d31072b765ce65f0d4d6ff5902ca16014020c3f..80a5aa90af79b400a197b84f0f5a03283167d573 100644
--- a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/formatter/testsource/test004$A_in.dart
+++ b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/formatter/testsource/test004$A_in.dart
@@ -95,7 +95,7 @@ class BasicBlock {
Out.write("BB#");
Out.write(getName());
Out.write(": ");
- if (!inEdges.isEmpty()) {
+ if (!inEdges.isEmpty) {
Out.write("in: ");
inEdges.forEach(function f(BasicBlock bb) {
Out.write("BB#");
@@ -103,7 +103,7 @@ class BasicBlock {
Out.write(" ");
});
}
- if (!outEdges.isEmpty()) {
+ if (!outEdges.isEmpty) {
Out.write("out: ");
outEdges.forEach(function f(BasicBlock bb) {
Out.write("BB#");
@@ -443,7 +443,7 @@ class HavlakLoopFinder {
type[w] = BB.REDUCIBLE;
}
// work the list...
- while (!workList.isEmpty()) {
+ while (!workList.isEmpty) {
UnionFindNode x = workList.getFirst();
workList.removeFirst();
// Step e:
@@ -732,7 +732,7 @@ class SimpleLoop {
Out.write(depthLevel);
if (isReducible)
Out.write(" (Irrudicible)");
- if (!getChildren().isEmpty()) {
+ if (!getChildren().isEmpty) {
Out.write("Children:");
getChildren.forEach(Function f(SimpleLoop loop) {
Out.write("loop-");
@@ -740,7 +740,7 @@ class SimpleLoop {
Out.write(" ");
});
}
- if (!basicBlocks.isEmpty()) {
+ if (!basicBlocks.isEmpty) {
Out.write("(");
basicBlocks.forEach(function f(BasicBlock bb) {
Out.write("BB#");

Powered by Google App Engine
This is Rietveld 408576698