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
(409)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: tests/compiler/dart2js/js_backend_cps_ir_interceptors.dart
Issue
808553004
:
Revert "cps-ir: Add support for intercepted calls." (Closed)
Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set:
Created 6 years 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:
pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
pkg/compiler/lib/src/cps_ir/shrinking_reductions.dart
pkg/compiler/lib/src/cps_ir/type_propagation.dart
pkg/compiler/lib/src/dart_backend/backend.dart
pkg/compiler/lib/src/dart_backend/dart_backend.dart
pkg/compiler/lib/src/js_backend/codegen/codegen.dart
pkg/compiler/lib/src/js_backend/codegen/glue.dart
pkg/compiler/lib/src/js_backend/codegen/task.dart
pkg/compiler/lib/src/js_backend/codegen/unsugar.dart
pkg/compiler/lib/src/tree_ir/tree_ir_builder.dart
tests/compiler/dart2js/js_backend_cps_ir_interceptors.dart
tests/compiler/dart2js/js_backend_cps_ir_test.dart
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« pkg/compiler/lib/src/tree_ir/tree_ir_builder.dart
('k') |
tests/compiler/dart2js/js_backend_cps_ir_test.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
(Empty)
1
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2
// for details. All rights reserved. Use of this source code is governed by a
3
// BSD-style license that can be found in the LICENSE file.
4
5
// Tests of interceptors.
6
7
library interceptors_tests;
8
9
import 'js_backend_cps_ir_test.dart';
10
11
const List<TestEntry> tests = const [
12
const TestEntry("""
13
main() {
14
var g = 1;
15
16
var x = g + 3;
17
print(x);
18
}""",
19
r"""
20
function() {
21
var g, v0;
22
g = 1;
23
v0 = 3;
24
P.print(J.getInterceptor(g).$add(g, v0));
25
return null;
26
}"""),
27
];
OLD
NEW
« no previous file with comments
|
« pkg/compiler/lib/src/tree_ir/tree_ir_builder.dart
('k') |
tests/compiler/dart2js/js_backend_cps_ir_test.dart »
('j') |
no next file with comments »
Issue 808553004: Revert "cps-ir: Add support for intercepted calls." (Closed)
Created 6 years ago by karlklose
Modified 6 years ago
Reviewers: sigurdm
Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Comments: 0
This is Rietveld
408576698