Index: tests/lib/mirrors/invocation_fuzz_test.dart |
diff --git a/tests/lib/mirrors/invocation_fuzz_test.dart b/tests/lib/mirrors/invocation_fuzz_test.dart |
index 493c51871edb62695b91bfe1443e9d85deec3819..d877c5a1d24ebece9aac730f9ed78c11a31d5f4c 100644 |
--- a/tests/lib/mirrors/invocation_fuzz_test.dart |
+++ b/tests/lib/mirrors/invocation_fuzz_test.dart |
@@ -38,8 +38,8 @@ var blacklist = [ |
// These either cause the VM to segfault or throw uncatchable API errors. |
// TODO(15274): Fix them and remove from blacklist. |
- 'dart.io.SystemEncoding.decode', // Windows only |
- 'dart.io.SystemEncoding.encode', // Windows only |
+ 'dart.io.SystemEncoding.decode', // Windows only |
+ 'dart.io.SystemEncoding.encode', // Windows only |
// These construct an object with an uninitialized native field. |
// TODO(23869): We could make this safer, but making the failure non-fatal |
@@ -69,6 +69,7 @@ class Task { |
var name; |
var action; |
} |
+ |
var queue = new List(); |
checkMethod(MethodMirror m, ObjectMirror target, [origin]) { |
@@ -78,15 +79,12 @@ checkMethod(MethodMirror m, ObjectMirror target, [origin]) { |
task.name = '${MirrorSystem.getName(m.qualifiedName)} from $origin'; |
if (m.isRegularMethod) { |
- task.action = |
- () => target.invoke(m.simpleName, |
- new List.filled(m.parameters.length, fuzzArgument)); |
+ task.action = () => target.invoke( |
+ m.simpleName, new List.filled(m.parameters.length, fuzzArgument)); |
} else if (m.isGetter) { |
- task.action = |
- () => target.getField(m.simpleName); |
+ task.action = () => target.getField(m.simpleName); |
} else if (m.isSetter) { |
- task.action = |
- () => target.setField(m.simpleName, null); |
+ task.action = () => target.setField(m.simpleName, null); |
} else if (m.isConstructor) { |
return; |
} else { |
@@ -133,8 +131,7 @@ checkClass(classMirror) { |
task.name = MirrorSystem.getName(m.qualifiedName); |
task.action = () { |
- var instance = classMirror.newInstance( |
- m.constructorName, |
+ var instance = classMirror.newInstance(m.constructorName, |
new List.filled(m.parameters.length, fuzzArgument)); |
checkInstance(instance, task.name); |
}; |
@@ -167,7 +164,7 @@ doOneTask() { |
print(task.name); |
try { |
task.action(); |
- } catch(e) {} |
+ } catch (e) {} |
// Register the next task in a timer callback so as to yield to async code |
// scheduled in the current task. This isn't necessary for the test itself, |
@@ -189,15 +186,31 @@ main() { |
currentMirrorSystem().libraries.values.forEach(checkLibrary); |
- var valueObjects = |
- [true, false, null, [], {}, dynamic, |
- 0, 0xEFFFFFF, 0xFFFFFFFF, 0xFFFFFFFFFFFFFFFF, 3.14159, () {}, |
- "foo", 'blåbærgrød', 'Îñţérñåţîöñåļîžåţîờñ', "\u{1D11E}", #symbol]; |
+ var valueObjects = [ |
+ true, |
+ false, |
+ null, |
+ [], |
+ {}, |
+ dynamic, |
+ 0, |
+ 0xEFFFFFF, |
+ 0xFFFFFFFF, |
+ 0xFFFFFFFFFFFFFFFF, |
+ 3.14159, |
+ () {}, |
+ "foo", |
+ 'blåbærgrød', |
+ 'Îñţérñåţîöñåļîžåţîờñ', |
+ "\u{1D11E}", |
+ #symbol |
+ ]; |
valueObjects.forEach((v) => checkInstance(reflect(v), 'value object')); |
- uncaughtErrorHandler(self, parent, zone, error, stack) {}; |
+ uncaughtErrorHandler(self, parent, zone, error, stack) {} |
+ ; |
var zoneSpec = |
- new ZoneSpecification(handleUncaughtError: uncaughtErrorHandler); |
+ new ZoneSpecification(handleUncaughtError: uncaughtErrorHandler); |
testZone = Zone.current.fork(specification: zoneSpec); |
testZone.createTimer(Duration.ZERO, doOneTask); |
} |