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

Issue 2664593002: Port parser and scanner fixes from rasta branch. (Closed)

Created:
3 years, 10 months ago by ahe
Modified:
3 years, 10 months ago
Reviewers:
Johnni Winther
CC:
reviews_dartlang.org, dart-fe-team+reviews_google.com
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Patch Set 1 #

Total comments: 1

Patch Set 2 : Update status files. #

Total comments: 19

Patch Set 3 : Address comments. #

Patch Set 4 : Rebased on ef8ec26cf36d1f07b4fdf5d605003210826ae1c2. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+672 lines, -225 lines) Patch
M pkg/compiler/lib/src/parser/element_listener.dart View 1 2 3 2 chunks +5 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/errors.dart View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M pkg/front_end/lib/src/fasta/parser.dart View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/parser/error_kind.dart View 1 2 3 2 chunks +5 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/parser/parser.dart View 1 2 3 15 chunks +97 lines, -98 lines 0 comments Download
M pkg/front_end/lib/src/fasta/scanner.dart View 1 2 3 4 chunks +9 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/scanner/abstract_scanner.dart View 1 2 3 4 chunks +9 lines, -14 lines 0 comments Download
M pkg/front_end/lib/src/fasta/scanner/array_based_scanner.dart View 1 2 3 2 chunks +3 lines, -1 line 0 comments Download
A pkg/front_end/lib/src/fasta/scanner/error_token.dart View 1 2 3 1 chunk +219 lines, -0 lines 0 comments Download
M pkg/front_end/lib/src/fasta/scanner/keyword.dart View 1 2 3 1 chunk +4 lines, -3 lines 0 comments Download
M pkg/front_end/lib/src/fasta/scanner/recover.dart View 1 2 3 2 chunks +213 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/scanner/token.dart View 1 2 3 4 chunks +5 lines, -54 lines 0 comments Download
M pkg/front_end/lib/src/fasta/scanner/utf8_bytes_scanner.dart View 1 2 3 5 chunks +39 lines, -29 lines 0 comments Download
M pkg/front_end/lib/src/fasta/source/source_loader.dart View 1 2 3 5 chunks +20 lines, -6 lines 0 comments Download
M pkg/front_end/test/fasta/compile.status View 1 2 3 2 chunks +4 lines, -3 lines 0 comments Download
M pkg/front_end/test/fasta/kompile.status View 1 2 3 2 chunks +3 lines, -2 lines 0 comments Download
M pkg/front_end/test/fasta/outline.status View 1 2 3 1 chunk +1 line, -2 lines 0 comments Download
A pkg/front_end/test/fasta/rasta/issue_000035a.dart View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
A pkg/front_end/test/fasta/rasta/issue_000035a.dart.dartk.expect View 1 2 3 1 chunk +8 lines, -0 lines 0 comments Download
A pkg/front_end/test/fasta/rasta/issue_000035a.dart.direct.expect View 1 2 3 1 chunk +9 lines, -0 lines 0 comments Download
A pkg/front_end/test/fasta/rasta/issue_000035a.dart.outline.expect View 1 2 3 1 chunk +8 lines, -0 lines 0 comments Download
M tests/co19/co19-dart2js.status View 1 2 3 1 chunk +0 lines, -2 lines 0 comments Download
M tests/compiler/dart2js/message_kind_helper.dart View 1 2 chunks +1 line, -1 line 0 comments Download
M tests/language/language_dart2js.status View 1 2 3 1 chunk +0 lines, -3 lines 0 comments Download

Messages

Total messages: 9 (4 generated)
ahe
https://codereview.chromium.org/2664593002/diff/1/pkg/fasta/test/rasta/issue_000035a.dart File pkg/fasta/test/rasta/issue_000035a.dart (right): https://codereview.chromium.org/2664593002/diff/1/pkg/fasta/test/rasta/issue_000035a.dart#newcode5 pkg/fasta/test/rasta/issue_000035a.dart:5: class C{ You can't see in my browser, but ...
3 years, 10 months ago (2017-01-27 23:46:33 UTC) #2
ahe
https://codereview.chromium.org/2664593002/diff/20001/tests/compiler/dart2js/message_kind_helper.dart File tests/compiler/dart2js/message_kind_helper.dart (left): https://codereview.chromium.org/2664593002/diff/20001/tests/compiler/dart2js/message_kind_helper.dart#oldcode25 tests/compiler/dart2js/message_kind_helper.dart:25: // If you add something here, please file a ...
3 years, 10 months ago (2017-01-28 00:33:34 UTC) #3
Johnni Winther
lgtm https://codereview.chromium.org/2664593002/diff/20001/pkg/dart_parser/lib/src/parser.dart File pkg/dart_parser/lib/src/parser.dart (right): https://codereview.chromium.org/2664593002/diff/20001/pkg/dart_parser/lib/src/parser.dart#newcode1226 pkg/dart_parser/lib/src/parser.dart:1226: reportUnrecoverableError(beginGroup, ErrorKind.UnmatchedToken); Why not use the token returned ...
3 years, 10 months ago (2017-01-30 09:04:39 UTC) #4
ahe
Thank you, Johhni! https://codereview.chromium.org/2664593002/diff/20001/pkg/dart_parser/lib/src/parser.dart File pkg/dart_parser/lib/src/parser.dart (right): https://codereview.chromium.org/2664593002/diff/20001/pkg/dart_parser/lib/src/parser.dart#newcode1226 pkg/dart_parser/lib/src/parser.dart:1226: reportUnrecoverableError(beginGroup, ErrorKind.UnmatchedToken); On 2017/01/30 09:04:38, Johnni ...
3 years, 10 months ago (2017-01-30 13:26:23 UTC) #5
ahe
3 years, 10 months ago (2017-02-01 12:59:18 UTC) #9
Message was sent while issue was closed.
Committed patchset #4 (id:100001) manually as
ce742a1697661c55115bdb8009a3aee6febb16cb (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698