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
(4)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: frog/tests/leg_only/src/SuperCallTest.dart
Issue
9166010
:
Implement super calls. (Closed)
Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments.
Created 8 years, 11 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:
frog/leg/resolver.dart
frog/leg/ssa/builder.dart
frog/leg/ssa/codegen.dart
frog/leg/ssa/nodes.dart
frog/leg/ssa/tracer.dart
frog/leg/tree/nodes.dart
frog/leg/warnings.dart
frog/tests/leg/src/ResolverTest.dart
frog/tests/leg_only/src/SuperCallTest.dart
tests/language/language-leg.status
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« frog/leg/resolver.dart
('K') |
« frog/tests/leg/src/ResolverTest.dart
('k') |
tests/language/language-leg.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
(Empty)
1
class A {
2
foo() => "A.foo" + baz();
3
baz() => "A.baz";
4
hest(String s, int i) => s + i;
5
}
6
7
class B extends A {
8
foo() => "B.foo" + super.foo();
9
baz() => "B.baz";
10
hest(s, i) => "B.hest" + super.hest(s, i);
11
}
12
13
main() {
14
B b = new B();
15
Expect.equals("B.fooA.fooB.baz", b.foo());
16
Expect.equals("B.hestfisk42", b.hest('fisk', 42));
17
}
OLD
NEW
« frog/leg/resolver.dart
('K') |
« frog/tests/leg/src/ResolverTest.dart
('k') |
tests/language/language-leg.status »
('j') |
no next file with comments »
Issue 9166010: Implement super calls. (Closed)
Created 8 years, 11 months ago by karlklose
Modified 8 years, 11 months ago
Reviewers: floitsch, ngeoffray
Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Comments: 21
This is Rietveld
408576698