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

Issue 9838038: "Implement" #resource tag and various restrictions on library definitions. (Closed)

Created:
8 years, 9 months ago by ahe
Modified:
8 years, 9 months ago
CC:
reviews_dartlang.org, compiler-dev_dartlang.org
Visibility:
Public.

Description

"Implement" #resource tag and various restrictions on library definitions. Committed: https://code.google.com/p/dart/source/detail?r=5804

Patch Set 1 #

Total comments: 14

Patch Set 2 : Address review comments #

Total comments: 4

Patch Set 3 : Address review comments #

Patch Set 4 : Add #import tags. #

Total comments: 3
Unified diffs Side-by-side diffs Delta from patch set Stats (+80 lines, -23 lines) Patch
M dart/frog/leg/compiler.dart View 1 chunk +15 lines, -6 lines 0 comments Download
M dart/frog/leg/elements/elements.dart View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M dart/frog/leg/scanner/scanner_task.dart View 1 2 4 chunks +47 lines, -0 lines 0 comments Download
M dart/frog/leg/tree/nodes.dart View 1 2 3 1 chunk +1 line, -0 lines 1 comment Download
M dart/frog/tests/leg/src/mock_compiler.dart View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M dart/frog/tests/native/src/NativeLibrarySameNameUsedLib1.dart View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M dart/tests/co19/co19-leg.status View 1 2 3 4 chunks +4 lines, -10 lines 1 comment Download
M dart/tests/language/language-leg.status View 1 2 3 2 chunks +0 lines, -3 lines 1 comment Download
M dart/tests/standalone/standalone-leg.status View 1 1 chunk +4 lines, -3 lines 0 comments Download
M dart/tests/utils/src/DummyCompilerTest.dart View 1 2 3 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 8 (0 generated)
ahe
8 years, 9 months ago (2012-03-23 00:25:49 UTC) #1
ngeoffray
LGTM https://chromiumcodereview.appspot.com/9838038/diff/1/dart/frog/leg/scanner/scanner_task.dart File dart/frog/leg/scanner/scanner_task.dart (right): https://chromiumcodereview.appspot.com/9838038/diff/1/dart/frog/leg/scanner/scanner_task.dart#newcode31 dart/frog/leg/scanner/scanner_task.dart:31: compiler.reportError(tag, 'out of order'); That's news to me. ...
8 years, 9 months ago (2012-03-23 07:54:30 UTC) #2
Lasse Reichstein Nielsen
LGTM https://chromiumcodereview.appspot.com/9838038/diff/1/dart/frog/leg/scanner/scanner_task.dart File dart/frog/leg/scanner/scanner_task.dart (right): https://chromiumcodereview.appspot.com/9838038/diff/1/dart/frog/leg/scanner/scanner_task.dart#newcode6 dart/frog/leg/scanner/scanner_task.dart:6: static final int LIBRARY = 1; Add comment ...
8 years, 9 months ago (2012-03-23 08:10:58 UTC) #3
ahe
Hi Lasse and Nicolas, Thank you for your suggestions. I have replied to some of ...
8 years, 9 months ago (2012-03-23 08:44:35 UTC) #4
ahe
PTAL https://chromiumcodereview.appspot.com/9838038/diff/1/dart/frog/leg/scanner/scanner_task.dart File dart/frog/leg/scanner/scanner_task.dart (right): https://chromiumcodereview.appspot.com/9838038/diff/1/dart/frog/leg/scanner/scanner_task.dart#newcode30 dart/frog/leg/scanner/scanner_task.dart:30: if (tagState > currentState) { On 2012/03/23 08:10:59, ...
8 years, 9 months ago (2012-03-23 17:15:22 UTC) #5
ngeoffray
Still LGTM https://chromiumcodereview.appspot.com/9838038/diff/3002/dart/frog/leg/elements/elements.dart File dart/frog/leg/elements/elements.dart (right): https://chromiumcodereview.appspot.com/9838038/diff/3002/dart/frog/leg/elements/elements.dart#newcode317 dart/frog/leg/elements/elements.dart:317: bool hasLibraryName() => (!tags.isEmpty()) && tags.reverse().head.isLibrary(); The ...
8 years, 9 months ago (2012-03-23 17:22:51 UTC) #6
ahe
Thank you. https://chromiumcodereview.appspot.com/9838038/diff/3002/dart/frog/leg/elements/elements.dart File dart/frog/leg/elements/elements.dart (right): https://chromiumcodereview.appspot.com/9838038/diff/3002/dart/frog/leg/elements/elements.dart#newcode317 dart/frog/leg/elements/elements.dart:317: bool hasLibraryName() => (!tags.isEmpty()) && tags.reverse().head.isLibrary(); On ...
8 years, 9 months ago (2012-03-24 08:02:03 UTC) #7
ahe
8 years, 9 months ago (2012-03-24 08:40:14 UTC) #8
I had to make a few tweaks after rebasing/updating. Unfortunately, I forgot to
upload a clean version before I started making changes, so I have added comments
to help you identify the stuff I didn't touch in patch set #3.

https://chromiumcodereview.appspot.com/9838038/diff/1009/dart/frog/leg/tree/n...
File dart/frog/leg/tree/nodes.dart (right):

https://chromiumcodereview.appspot.com/9838038/diff/1009/dart/frog/leg/tree/n...
dart/frog/leg/tree/nodes.dart:1: // Copyright (c) 2012, the Dart project
authors.  Please see the AUTHORS file
Changes in this file only due to updating.

https://chromiumcodereview.appspot.com/9838038/diff/1009/dart/tests/co19/co19...
File dart/tests/co19/co19-leg.status (right):

https://chromiumcodereview.appspot.com/9838038/diff/1009/dart/tests/co19/co19...
dart/tests/co19/co19-leg.status:1: # Copyright (c) 2011, the Dart project
authors.  Please see the AUTHORS file
Changes in this file only due to updating.

https://chromiumcodereview.appspot.com/9838038/diff/1009/dart/tests/language/...
File dart/tests/language/language-leg.status (right):

https://chromiumcodereview.appspot.com/9838038/diff/1009/dart/tests/language/...
dart/tests/language/language-leg.status:1: # Copyright (c) 2012, the Dart
project authors.  Please see the AUTHORS file
Changes in this file only due to updating.

Powered by Google App Engine
This is Rietveld 408576698