| OLD | NEW |
| 1 build/test/parameter_mirrors_test: CompileTimeError # Missing implementation |
| 1 | 2 |
| 2 [ $compiler == dart2js || $compiler == none ] | 3 [ $compiler == dart2js || $compiler == none ] |
| 3 # TODO(sigurdm) implement: Throw NoSuchMethod when the function doesn't exist, | 4 # TODO(sigurdm) implement: Throw NoSuchMethod when the function doesn't exist, |
| 4 # but the capability does. | 5 # but the capability does. |
| 5 build/test/no_such_capability_test: RuntimeError # Missing implementation | 6 build/test/no_such_capability_test: RuntimeError # Missing implementation |
| 6 build/test/invoke_capabilities_test: RuntimeError # Missing implementation | 7 build/test/invoke_capabilities_test: RuntimeError # Missing implementation |
| 7 build/test/invoke_toplevel_test: RuntimeError # Missing implementation | 8 build/test/invoke_toplevel_test: RuntimeError # Missing implementation |
| 8 build/test/parameter_mirrors_test: RuntimeError # Missing implementation | |
| 9 | 9 |
| 10 [ $compiler == dart2js ] | 10 [ $compiler == dart2js ] |
| 11 test/*_test: skip # Some needed mirror features not implemented by dart2js. | 11 test/*_test: skip # Some needed mirror features not implemented by dart2js. |
| 12 | 12 |
| 13 [ ($compiler == none && $runtime != dartium) || $compiler == dart2js || $compile
r == dartanalyzer || $compiler == dart2analyzer] | 13 [ ($compiler == none && $runtime != dartium) || $compiler == dart2js || $compile
r == dartanalyzer || $compiler == dart2analyzer] |
| 14 build/test/new_instance_default_values_test: CompileTimeError # Issue #8 | 14 build/test/new_instance_default_values_test: CompileTimeError # Issue #8 |
| 15 | 15 |
| 16 [ ($compiler == none && $runtime == dartium) ] | 16 [ ($compiler == none && $runtime == dartium) ] |
| 17 build/test/new_instance_default_values_test: RuntimeError # Issue #8 | 17 build/test/new_instance_default_values_test: RuntimeError # Issue #8 |
| OLD | NEW |