Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: test/inspector/type-profile/collect-type-profile.js

Issue 2747383004: 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.
Jump to:
View side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/inspector/type-profile/collect-type-profile.js
diff --git a/test/inspector/type-profile/collect-type-profile.js b/test/inspector/type-profile/collect-type-profile.js
deleted file mode 100644
index 5f16c0bcceb8057d323ef962b34d44b7e180e252..0000000000000000000000000000000000000000
--- a/test/inspector/type-profile/collect-type-profile.js
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright 2016 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Flags: --type-profile --turbo
-
-const expression = `
-function test(param) {
- var my_var1 = param;
- var my_var2 = 17;
-}
-
-test({});
-test(123);
-test('hello');
-test(123);
-test(undefined);
-test('hello');
-test({x: 12});
-test({x: 12});
-
-class MyClass {
- constructor() {}
-}
-
-
-function testConstructorNames(param) {
- var my_var = param;
-}
-
-testConstructorNames(new MyClass());
-testConstructorNames({});
-testConstructorNames(2);
-`;
-
-
-Protocol.Runtime.evaluate({ expression: expression })
- .then(function() {InspectorTest.completeTest();});
« 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 »

Powered by Google App Engine
This is Rietveld 408576698