Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(2281)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: tests/language/compile_time_constant_c_test.dart
Issue
589043003
:
Backout constant support (Closed)
Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set:
Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ConstantVisitor.java
editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/object/InstanceState.java
editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/constant/ConstantEvaluatorTest.java
editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/object/DartObjectImplTest.java
tests/language/compile_time_constant12_test.dart
tests/language/compile_time_constant_c_test.dart
tests/language/language.status
tests/language/language_analyzer2.status
tests/language/language_dart2js.status
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ConstantVisitor.java
('K') |
« tests/language/compile_time_constant12_test.dart
('k') |
tests/language/language.status »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
3 // BSD-style license that can be found in the LICENSE file.
4
4
5 const m1 = const {
5 const m1 = const {
6 499: 400 + 99
6 499: 400 + 99
7 };
7 };
8 const m2 = const {
8 const m2 = const {
9
"foo" + "bar": 42
9
"foo" + "bar": 42
/// 01: compile-time error
10 };
10 };
11
11
12 use(x) => x;
12 use(x) => x;
13
13
14 main() {
14 main() {
15 use(m1);
15 use(m1);
16 use(m2);
16 use(m2);
17 }
17 }
OLD
NEW
« editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ConstantVisitor.java
('K') |
« tests/language/compile_time_constant12_test.dart
('k') |
tests/language/language.status »
('j') |
no next file with comments »
Issue 589043003: Backout constant support (Closed)
Created 6 years, 3 months ago by Brian Wilkerson
Modified 6 years, 3 months ago
Reviewers: Paul Berry
Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Comments: 2
This is Rietveld
408576698