Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Issue 1316723003: implement null aware ops, fixes #249 (Closed)

Created:
5 years, 4 months ago by Jennifer Messerly
Modified:
5 years, 4 months ago
Reviewers:
vsm
CC:
dev-compiler+reviews_dartlang.org
Base URL:
git@github.com:dart-lang/dev_compiler.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

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

Patch Set 1 #

Patch Set 2 : format #

Total comments: 5

Patch Set 3 : #

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

Messages

Total messages: 5 (1 generated)
Jennifer Messerly
5 years, 4 months ago (2015-08-25 20:46:58 UTC) #2
vsm
lgtm! https://codereview.chromium.org/1316723003/diff/20001/lib/src/checker/checker.dart File lib/src/checker/checker.dart (left): https://codereview.chromium.org/1316723003/diff/20001/lib/src/checker/checker.dart#oldcode378 lib/src/checker/checker.dart:378: DartType staticType = rules.elementType(field.staticElement); FWIW, I recently changed ...
5 years, 4 months ago (2015-08-25 21:47:26 UTC) #3
Jennifer Messerly
Thanks! Fixed & Rebased https://codereview.chromium.org/1316723003/diff/20001/lib/src/checker/checker.dart File lib/src/checker/checker.dart (left): https://codereview.chromium.org/1316723003/diff/20001/lib/src/checker/checker.dart#oldcode378 lib/src/checker/checker.dart:378: DartType staticType = rules.elementType(field.staticElement); On ...
5 years, 4 months ago (2015-08-25 22:13:11 UTC) #4
Jennifer Messerly
5 years, 4 months ago (2015-08-25 22:13:22 UTC) #5
Message was sent while issue was closed.
Committed patchset #3 (id:40001) manually as
f46ecdc839d040f5828e3012792d66fa6121ba06 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698