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

Unified Diff: pkg/analyzer/test/generated/ast_test.dart

Issue 624403002: Write end-of-block comments. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
« no previous file with comments | « pkg/analyzer/lib/src/generated/sdk_io.dart ('k') | pkg/analyzer/test/generated/element_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/generated/ast_test.dart
diff --git a/pkg/analyzer/test/generated/ast_test.dart b/pkg/analyzer/test/generated/ast_test.dart
index 534196a0af725cdc25febd20c707e741e24419ca..ad8c4b0040bc336f46c8afbf2849599c2d5cacc5 100644
--- a/pkg/analyzer/test/generated/ast_test.dart
+++ b/pkg/analyzer/test/generated/ast_test.dart
@@ -86,6 +86,7 @@ class BreadthFirstVisitorTest extends ParserTestCase {
EngineTestCase.assertInstanceOf((obj) => obj is FunctionDeclaration, FunctionDeclaration, nodes[3]);
EngineTestCase.assertInstanceOf((obj) => obj is FunctionDeclarationStatement, FunctionDeclarationStatement, nodes[27]);
EngineTestCase.assertInstanceOf((obj) => obj is IntegerLiteral, IntegerLiteral, nodes[58]);
+ //3
}
static dartSuite() {
@@ -874,6 +875,7 @@ class NodeListTest extends EngineTestCase {
list.insert(-1, AstFactory.booleanLiteral(true));
JUnitTestCase.fail("Expected IndexOutOfBoundsException");
} on RangeError catch (exception) {
+ // Expected
}
}
@@ -883,6 +885,7 @@ class NodeListTest extends EngineTestCase {
list.insert(1, AstFactory.booleanLiteral(true));
JUnitTestCase.fail("Expected IndexOutOfBoundsException");
} on RangeError catch (exception) {
+ // Expected
}
}
@@ -939,6 +942,7 @@ class NodeListTest extends EngineTestCase {
list[-1];
JUnitTestCase.fail("Expected IndexOutOfBoundsException");
} on RangeError catch (exception) {
+ // Expected
}
}
@@ -948,6 +952,7 @@ class NodeListTest extends EngineTestCase {
list[1];
JUnitTestCase.fail("Expected IndexOutOfBoundsException");
} on RangeError catch (exception) {
+ // Expected
}
}
@@ -1017,6 +1022,7 @@ class NodeListTest extends EngineTestCase {
list.removeAt(-1);
JUnitTestCase.fail("Expected IndexOutOfBoundsException");
} on RangeError catch (exception) {
+ // Expected
}
}
@@ -1026,6 +1032,7 @@ class NodeListTest extends EngineTestCase {
list.removeAt(1);
JUnitTestCase.fail("Expected IndexOutOfBoundsException");
} on RangeError catch (exception) {
+ // Expected
}
}
@@ -1055,6 +1062,7 @@ class NodeListTest extends EngineTestCase {
javaListSet(list, -1, node);
JUnitTestCase.fail("Expected IndexOutOfBoundsException");
} on RangeError catch (exception) {
+ // Expected
}
}
@@ -1065,6 +1073,7 @@ class NodeListTest extends EngineTestCase {
javaListSet(list, 1, node);
JUnitTestCase.fail("Expected IndexOutOfBoundsException");
} on RangeError catch (exception) {
+ // Expected
}
}
« no previous file with comments | « pkg/analyzer/lib/src/generated/sdk_io.dart ('k') | pkg/analyzer/test/generated/element_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698