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
(26)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: test/inspector/type-profile/collect-type-profile.js
Issue
2754573002
:
Revert of Collect type profile for DevTools. (Closed)
Patch Set:
Created 3 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:
src/ast/ast.h
src/ast/ast.cc
src/ast/ast-numbering.h
src/ast/ast-numbering.cc
src/compiler.cc
src/compiler/bytecode-graph-builder.cc
src/feedback-vector.h
src/feedback-vector.cc
src/feedback-vector-inl.h
src/ic/ic.cc
src/interpreter/bytecode-array-builder.h
src/interpreter/bytecode-array-builder.cc
src/interpreter/bytecode-generator.cc
src/interpreter/bytecodes.h
src/interpreter/interpreter.cc
src/objects-printer.cc
src/runtime/runtime.h
src/runtime/runtime-object.cc
test/inspector/type-profile/collect-type-profile.js
test/inspector/type-profile/collect-type-profile-array-splice.js
test/inspector/type-profile/collect-type-profile-array-splice-expected.txt
test/inspector/type-profile/collect-type-profile-expected.txt
test/unittests/interpreter/bytecode-array-builder-unittest.cc
View unified diff
|
Download patch
« no previous file with comments
|
« src/runtime/runtime-object.cc
('k') |
test/inspector/type-profile/collect-type-profile-array-splice.js »
('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 2016 the V8 project authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
// Flags: --type-profile --turbo
6
7
const expression = `
8
function test(param) {
9
var my_var1 = param;
10
var my_var2 = 17;
11
}
12
13
test({});
14
test(123);
15
test('hello');
16
test(123);
17
test(undefined);
18
test('hello');
19
test({x: 12});
20
test({x: 12});
21
22
class MyClass {
23
constructor() {}
24
}
25
26
27
function testConstructorNames(param) {
28
var my_var = param;
29
}
30
31
testConstructorNames(new MyClass());
32
testConstructorNames({});
33
testConstructorNames(2);
34
`;
35
36
37
Protocol.Runtime.evaluate({ expression: expression })
38
.then(function() {InspectorTest.completeTest();});
OLD
NEW
« no previous file with comments
|
« src/runtime/runtime-object.cc
('k') |
test/inspector/type-profile/collect-type-profile-array-splice.js »
('j') |
no next file with comments »
Issue 2754573002: Revert of Collect type profile for DevTools. (Closed)
Created 3 years, 9 months ago by Franzi
Modified 3 years, 9 months ago
Reviewers: Yang, mvstanton, rmcilroy, Michael Starzinger
Base URL:
Comments: 0
This is Rietveld
408576698