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
(551)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: Source/bindings/scripts/find-identical.sh
Issue
15801003
:
IDL parser rewrite in Python (Closed)
Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: [WIP] Full parser
Created 7 years, 6 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:
Source/bindings/scripts/ast_to_ir.py
Source/bindings/scripts/blink_idl_lexer.py
Source/bindings/scripts/blink_idl_lexer_test.py
Source/bindings/scripts/blink_idl_parser.py
Source/bindings/scripts/blink_idl_parser_test.py
Source/bindings/scripts/code_generator_v8.py
Source/bindings/scripts/dump_ir.py
Source/bindings/scripts/find-identical.sh
Source/bindings/scripts/generate_bindings.py
Source/bindings/scripts/ir.py
Source/bindings/scripts/test-py-json.sh
Source/bindings/scripts/test_json_import_export.py
Source/bindings/scripts/test_json_import_export.sh
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« Source/bindings/scripts/dump_ir.py
('k') |
Source/bindings/scripts/generate_bindings.py »
('j') |
Source/bindings/scripts/ir.py »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
#!/bin/bash
2
3
# Find JSON files that are identical
4
BLINK_DIR='/w/chr/src/third_party/WebKit'
5
PY_JSON_DIR="$BLINK_DIR/Source/bindings/scripts/JSON"
6
PL_JSON_DIR="$HOME/JSON-pl"
7
for PY_JSON in $PY_JSON_DIR/*.json
8
do
9
BASENAME=$(basename $PY_JSON)
10
PL_JSON="$PL_JSON_DIR/$BASENAME"
11
if cmp --quiet "$PY_JSON" "$PL_JSON"
12
then
13
echo "$BASENAME"
14
fi
15
done
OLD
NEW
« no previous file with comments
|
« Source/bindings/scripts/dump_ir.py
('k') |
Source/bindings/scripts/generate_bindings.py »
('j') |
Source/bindings/scripts/ir.py »
('J')
Issue 15801003: IDL parser rewrite in Python (Closed)
Created 7 years, 6 months ago by Nils Barth (inactive)
Modified 7 years, 5 months ago
Reviewers: haraken, abarth-chromium
Base URL: svn://svn.chromium.org/blink/trunk
Comments: 257
This is Rietveld
408576698