|
implement null aware ops, fixes #249
this also implements multitest support, which fixes #280
Fixes some other preexisting bugs:
* MetaLets did not simplify themselves correctly in some nested cases
* Library prefixed identifiers did not work as lvalues in opassign
* dsetindex/dput/[]= methods did not return a value
* checker did not correctly handle invalid constructor field initializers
* cascades did not correctly work with method invocations(?)
* postfix ++/-- did not correctly generate lvalues in some cases
The good news: because this reuses on our existing lvalue/metalet helpers, it managed to flush out a lot of bugs in other features that use them.
R=vsm@google.com
Committed: https://github.com/dart-lang/dev_compiler/commit/f46ecdc839d040f5828e3012792d66fa6121ba06
Total comments: 5
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+1490 lines, -59 lines) |
Patch |
 |
M |
.gitignore
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
lib/runtime/_operations.js
|
View
|
|
3 chunks |
+20 lines, -1 line |
0 comments
|
Download
|
 |
M |
lib/runtime/dart/_interceptors.js
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
lib/runtime/dart/_internal.js
|
View
|
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
lib/runtime/dart/_native_typed_data.js
|
View
|
|
5 chunks |
+5 lines, -0 lines |
0 comments
|
Download
|
 |
M |
lib/runtime/dart/async.js
|
View
|
|
2 chunks |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
lib/runtime/dart/collection.js
|
View
|
|
8 chunks |
+21 lines, -12 lines |
0 comments
|
Download
|
 |
M |
lib/runtime/dart/convert.js
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
lib/runtime/dart/core.js
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
lib/runtime/dart/js.js
|
View
|
1
2
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
lib/runtime/dart_runtime.js
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
lib/src/checker/checker.dart
|
View
|
1
2
|
2 chunks |
+4 lines, -1 line |
0 comments
|
Download
|
 |
M |
lib/src/codegen/ast_builder.dart
|
View
|
|
2 chunks |
+16 lines, -0 lines |
0 comments
|
Download
|
 |
M |
lib/src/codegen/js_codegen.dart
|
View
|
1
|
13 chunks |
+159 lines, -16 lines |
0 comments
|
Download
|
 |
M |
lib/src/codegen/js_metalet.dart
|
View
|
|
3 chunks |
+37 lines, -4 lines |
0 comments
|
Download
|
 |
M |
lib/src/js/nodes.dart
|
View
|
|
1 chunk |
+18 lines, -0 lines |
0 comments
|
Download
|
 |
M |
test/browser/language_tests.js
|
View
|
|
2 chunks |
+41 lines, -9 lines |
0 comments
|
Download
|
 |
M |
test/codegen/language/async_star_test.dart
|
View
|
|
2 chunks |
+2 lines, -4 lines |
0 comments
|
Download
|
 |
A |
test/codegen/language/conditional_access_helper.dart
|
View
|
|
1 chunk |
+39 lines, -0 lines |
0 comments
|
Download
|
 |
A |
test/codegen/language/conditional_method_invocation_test.dart
|
View
|
|
1 chunk |
+64 lines, -0 lines |
0 comments
|
Download
|
 |
A |
test/codegen/language/conditional_property_access_test.dart
|
View
|
|
1 chunk |
+57 lines, -0 lines |
0 comments
|
Download
|
 |
A |
test/codegen/language/conditional_property_assignment_test.dart
|
View
|
|
1 chunk |
+100 lines, -0 lines |
0 comments
|
Download
|
 |
A |
test/codegen/language/conditional_property_increment_decrement_test.dart
|
View
|
|
1 chunk |
+106 lines, -0 lines |
0 comments
|
Download
|
 |
A |
test/codegen/language/if_null_assignment_behavior_test.dart
|
View
|
|
1 chunk |
+214 lines, -0 lines |
0 comments
|
Download
|
 |
A |
test/codegen/language/if_null_assignment_helper.dart
|
View
|
|
1 chunk |
+40 lines, -0 lines |
0 comments
|
Download
|
 |
A |
test/codegen/language/if_null_assignment_static_test.dart
|
View
|
|
1 chunk |
+171 lines, -0 lines |
0 comments
|
Download
|
 |
A |
test/codegen/language/nullaware_opt_test.dart
|
View
|
|
1 chunk |
+70 lines, -0 lines |
0 comments
|
Download
|
 |
A |
test/codegen/language/super_conditional_operator_test.dart
|
View
|
|
1 chunk |
+42 lines, -0 lines |
0 comments
|
Download
|
 |
A |
test/codegen/language/this_conditional_operator_test.dart
|
View
|
|
1 chunk |
+28 lines, -0 lines |
0 comments
|
Download
|
 |
M |
test/codegen_test.dart
|
View
|
1
2
|
3 chunks |
+54 lines, -10 lines |
0 comments
|
Download
|
 |
A |
test/multitest.dart
|
View
|
|
1 chunk |
+171 lines, -0 lines |
0 comments
|
Download
|
Total messages: 5 (1 generated)
|