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
(41)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: utils/tests/template/test_nested.dart
Issue
9728009
:
Template bug fixes and new features. (Closed)
Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Undid css.status change
Created 8 years, 9 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:
utils/css/cssoptions.dart
utils/css/parser.dart
utils/template/codegen.dart
utils/template/htmltree.dart
utils/template/parser.dart
utils/template/tokenizer.dart
utils/tests/template/callview.tmpl
utils/tests/template/name_entry_text.tmpl
utils/tests/template/nestedview.tmpl
utils/tests/template/productview_localname.tmpl
utils/tests/template/realviews.tmpl
utils/tests/template/run
utils/tests/template/test_nested.dart
utils/tests/template/top_searches.tmpl
utils/tests/template/top_searches2.tmpl
utils/tests/template/top_searches_css.tmpl
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« utils/tests/template/run
('k') |
utils/tests/template/top_searches.tmpl »
('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
// Sample for #with templates:
2
//
3
// productview.tmpl
4
// productview2.tmpl
5
6
7
#import('dart:html');
8
#source('nestedview.dart');
9
10
class Person {
11
String name;
12
int age;
13
14
Person(this.name, this.age);
15
}
16
17
void main() {
18
// Simple template.
19
Person person1 = new Person("Aristotle - Bugger for the bottle", 52);
20
Person person2 = new Person("René Descartes - Drunken fart", 62);
21
22
NestedView view = new NestedView(person1, person2);
23
document.body.elements.add(view.root);
24
}
25
OLD
NEW
« no previous file with comments
|
« utils/tests/template/run
('k') |
utils/tests/template/top_searches.tmpl »
('j') |
no next file with comments »
Issue 9728009: Template bug fixes and new features. (Closed)
Created 8 years, 9 months ago by terry
Modified 8 years, 9 months ago
Reviewers: Siggi Cherem (dart-lang)
Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Comments: 0
This is Rietveld
408576698