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
(175)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: compiler/api.dart
Issue
12880023
:
Remove legacy syntax support for library import (Closed)
Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set:
Created 7 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:
compiler/api.dart
compiler/tests/dartc/test_config.dart
runtime/bin/io.dart
runtime/vm/flow_graph_builder.cc
runtime/vm/intermediate_language.h
runtime/vm/intrinsifier.h
runtime/vm/parser.cc
runtime/vm/scanner.h
runtime/vm/scanner.cc
runtime/vm/token.h
tests/co19/test_config.dart
tests/isolate/isolate_import_negative_test.dart
tests/language/library1_lib.lib
tests/language/library_prefixes.lib
tests/language/library_prefixes_test1.lib
tests/language/library_prefixes_test2.lib
tests/language/private2_lib.lib
tests/language/private_lib
tests/language/private_other.lib
tests/language/top_level_prefixed_library_test.lib
tests/standalone/package/package_test.dart
tests/standalone/package/packages/lib1.dart
tests/standalone/package/packages/lib2/lib2.dart
tests/standalone/package/packages/lib3/sub/lib3.dart
tests/standalone/package/packages/package1.dart
tests/standalone/package/packages/package2.dart
tests/standalone/package/packages/shared.dart
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« no previous file
|
compiler/tests/dartc/test_config.dart »
('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
#library("api");
1
library api;
2 // dart:core is implicit
2 // dart:core is implicit
3
#
import
(
"dart:html"
)
;
3
import
"dart:html";
4
#
import
(
"dart:json"
)
;
4
import
"dart:json";
5
#
import
(
"dart:isolate"
)
;
5
import
"dart:isolate";
OLD
NEW
« no previous file with comments
|
« no previous file
|
compiler/tests/dartc/test_config.dart »
('j') |
no next file with comments »
Issue 12880023: Remove legacy syntax support for library import (Closed)
Created 7 years, 9 months ago by hausner
Modified 7 years, 9 months ago
Reviewers: Ivan Posva
Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Comments: 0
This is Rietveld
408576698