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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 10920003: Use new syntax for getters in test.dart and its libraries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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
« no previous file with comments | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index bd8d4bdc156efad1097379c35a3557b9bdcc0a50..d912405230f30a907e2440887cb0d3774ed6180e 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -755,7 +755,7 @@ class StandardTestSuite implements TestSuite {
return new File(generatedTestPath).fullPathSync().replaceAll('\\', '/');
}
- String get scriptType() {
+ String get scriptType {
switch (configuration['compiler']) {
case 'none':
case 'dart2dart':
@@ -770,7 +770,7 @@ class StandardTestSuite implements TestSuite {
}
}
- bool get hasRuntime() {
+ bool get hasRuntime {
switch(configuration['runtime']) {
case null:
Expect.fail("configuration['runtime'] is not set");
@@ -790,7 +790,7 @@ class StandardTestSuite implements TestSuite {
"${configuration['compiler']}-${configuration['runtime']}.html";
}
- String get dumpRenderTreeFilename() {
+ String get dumpRenderTreeFilename {
if (configuration['drt'] != '') {
return configuration['drt'];
}
@@ -801,7 +801,7 @@ class StandardTestSuite implements TestSuite {
return dartDir.append('client/tests/drt/DumpRenderTree').toNativePath();
}
- String get dartiumFilename() {
+ String get dartiumFilename {
if (configuration['dartium'] != '') {
return configuration['dartium'];
}
« no previous file with comments | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698