| OLD | NEW |
| 1 | 1 |
| 2 [ $compiler == dart2js || $compiler == none ] | 2 [ $compiler == dart2js || $compiler == none ] |
| 3 # TODO Throw NoSuchMethod when the function doesn't exist, but the capability | 3 # TODO Throw NoSuchMethod when the function doesn't exist, but the capability |
| 4 # does. | 4 # does. |
| 5 build/test/no_such_capability_test: RuntimeError # Missing implementation | 5 build/test/no_such_capability_test: RuntimeError # Missing implementation |
| 6 build/test/invoke_capabilities_test: RuntimeError # Missing implementation | 6 build/test/invoke_capabilities_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 | 13 |
| 14 [ ($compiler == none && $runtime != dartium) ] | |
| 15 test/invoker_operator_test: CompiletimeError # sdk issue #23880 | |
| 16 | |
| 17 [ ($compiler == none && $runtime == dartium) ] | 14 [ ($compiler == none && $runtime == dartium) ] |
| 18 build/test/new_instance_default_values_test: RuntimeError # Issue #8 | 15 build/test/new_instance_default_values_test: RuntimeError # Issue #8 |
| OLD | NEW |