| 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'];
|
| }
|
|
|