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