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: tools/idl_parser/test_lexer/values.in
Issue
13498002
:
Add WebIDL compliant parser plus tests (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up IDLNode, make members private
Created 7 years, 8 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:
tools/idl_parser/idl_lexer.py
tools/idl_parser/idl_log.py
tools/idl_parser/idl_node.py
tools/idl_parser/idl_parser.py
tools/idl_parser/test_lexer/keywords.in
tools/idl_parser/test_lexer/values.in
tools/idl_parser/test_parser/callback.idl
tools/idl_parser/test_parser/dictionary.idl
tools/idl_parser/test_parser/enum.idl
tools/idl_parser/test_parser/exception.idl
tools/idl_parser/test_parser/implements.idl
tools/idl_parser/test_parser/interface.idl
tools/idl_parser/test_parser/typedef.idl
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« tools/idl_parser/idl_lexer.py
('K') |
« tools/idl_parser/test_lexer/keywords.in
('k') |
tools/idl_parser/test_parser/callback.idl »
('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
integer 1 integer 123 integer 12345
2
identifier A123 identifier A_A
3
4
COMMENT /*XXXX*/
5
COMMENT //XXXX
6
7
COMMENT /*MULTI LINE*/
8
9
[ [
10
] ]
11
* *
12
. .
13
( (
14
) )
15
{ {
16
} }
17
[ [
18
] ]
19
, ,
20
; ;
21
: :
22
= =
23
+ +
24
- -
25
/ /
26
~ ~
27
| |
28
& &
29
^ ^
30
> >
31
< <
32
LSHIFT <<
33
RSHIFT >>
34
35
ELLIPSIS ...
36
37
float 1.1
38
float 1e1
39
float -1.1
40
float -1e1
41
float 1e-1
42
float -1e-1
43
float 1.0e1
44
float -1.0e-1
45
46
integer 0x01
47
integer 0x0
48
integer 0x10
49
integer 0x112312
50
integer 0x1ABCD0
51
integer 0xA0B0C0
52
integer 0xabcdef
53
integer 0x1ab2cd
54
55
integer 00
56
integer 01
57
integer 0123
58
59
identifier blah
OLD
NEW
« tools/idl_parser/idl_lexer.py
('K') |
« tools/idl_parser/test_lexer/keywords.in
('k') |
tools/idl_parser/test_parser/callback.idl »
('j') |
no next file with comments »
Issue 13498002: Add WebIDL compliant parser plus tests (Closed)
Created 7 years, 8 months ago by noelallen1
Modified 7 years, 8 months ago
Reviewers: sehr
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 37
This is Rietveld
408576698