5b5a519243
Just a test for now to document how trailing space after async functions is not removed by SourceRangeAstVisitor. Bug: v8:10628 Change-Id: I40f0d911c59540ea835c807a2be5b0d1488291d9 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2259852 Auto-Submit: Jakob Gruber <jgruber@chromium.org> Commit-Queue: Sigurd Schneider <sigurds@chromium.org> Reviewed-by: Sigurd Schneider <sigurds@chromium.org> Cr-Commit-Position: refs/heads/master@{#68476}
159 lines
5.4 KiB
JavaScript
159 lines
5.4 KiB
JavaScript
// Copyright 2019 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: --allow-natives-syntax --no-always-opt --no-stress-flush-bytecode
|
|
// Flags: --no-stress-incremental-marking
|
|
// Files: test/mjsunit/code-coverage-utils.js
|
|
|
|
%DebugToggleBlockCoverage(true);
|
|
|
|
TestCoverage(
|
|
"await expressions",
|
|
`
|
|
async function f() { // 0000
|
|
await 42; // 0050
|
|
await 42; // 0100
|
|
}; // 0150
|
|
f(); // 0200
|
|
%PerformMicrotaskCheckpoint(); // 0250
|
|
`,
|
|
[{"start":0,"end":299,"count":1},
|
|
{"start":0,"end":151,"count":1}]
|
|
);
|
|
|
|
TestCoverage(
|
|
"for-await-of statements",
|
|
`
|
|
!async function() { // 0000
|
|
for await (var x of [0,1,2,3]) { // 0050
|
|
nop(); // 0100
|
|
} // 0150
|
|
}(); // 0200
|
|
%PerformMicrotaskCheckpoint(); // 0250
|
|
`,
|
|
[{"start":0,"end":299,"count":1},
|
|
{"start":1,"end":201,"count":1},
|
|
{"start":83,"end":153,"count":4}]
|
|
);
|
|
|
|
TestCoverage(
|
|
"https://crbug.com/981313",
|
|
`
|
|
class Foo { // 0000
|
|
async timeout() { // 0000
|
|
return new Promise( // 0100
|
|
(r) => setTimeout(r, 10)); // 0000
|
|
} // 0200
|
|
} // 0000
|
|
new Foo().timeout(); // 0300
|
|
`,
|
|
[ {"start":0, "end":349, "count":1},
|
|
{"start":52, "end":203, "count":1},
|
|
{"start":158,"end":182, "count":1}]);
|
|
|
|
TestCoverage(
|
|
"test async generator coverage",
|
|
`
|
|
class Foo { // 0000
|
|
async *timeout() { // 0000
|
|
return new Promise( // 0100
|
|
(r) => setTimeout(r, 10)); // 0000
|
|
} // 0200
|
|
} // 0000
|
|
new Foo().timeout(); // 0300
|
|
`,
|
|
[ {"start":0, "end":349, "count":1},
|
|
{"start":52, "end":203, "count":1},
|
|
{"start":158,"end":182, "count":0}]);
|
|
|
|
TestCoverage(
|
|
"test async generator coverage with next call",
|
|
`
|
|
class Foo { // 0000
|
|
async *timeout() { // 0000
|
|
return new Promise( // 0100
|
|
(r) => setTimeout(r, 10)); // 0000
|
|
} // 0200
|
|
} // 0000
|
|
new Foo().timeout().next(); // 0300
|
|
`,
|
|
[ {"start":0, "end":349, "count":1},
|
|
{"start":52, "end":203, "count":1},
|
|
{"start":158,"end":182, "count":1}]);
|
|
|
|
TestCoverage(
|
|
"test two consecutive returns",
|
|
`
|
|
class Foo { // 0000
|
|
timeout() { // 0000
|
|
return new Promise( // 0100
|
|
(r) => setTimeout(r, 10)); // 0000
|
|
return new Promise( // 0200
|
|
(r) => setTimeout(r, 10)); // 0000
|
|
} // 0300
|
|
} // 0000
|
|
new Foo().timeout(); // 0400
|
|
`,
|
|
[ {"start":0,"end":449,"count":1},
|
|
{"start":52,"end":303,"count":1},
|
|
{"start":184,"end":302,"count":0},
|
|
{"start":158,"end":182,"count":1}] );
|
|
|
|
|
|
TestCoverage(
|
|
"test async generator with two consecutive returns",
|
|
`
|
|
class Foo { // 0000
|
|
async *timeout() { // 0000
|
|
return new Promise( // 0100
|
|
(r) => setTimeout(r, 10)); // 0000
|
|
return new Promise( // 0200
|
|
(r) => setTimeout(r, 10)); // 0000
|
|
} // 0300
|
|
} // 0000
|
|
new Foo().timeout().next(); // 0400
|
|
`,
|
|
[ {"start":0,"end":449,"count":1},
|
|
{"start":52,"end":303,"count":1},
|
|
{"start":184,"end":302,"count":0},
|
|
{"start":158,"end":182,"count":1}] );
|
|
|
|
TestCoverage(
|
|
"https://crbug.com/v8/9952",
|
|
`
|
|
async function test(foo) { // 0000
|
|
return {bar}; // 0050
|
|
// 0100
|
|
function bar() { // 0150
|
|
console.log("test"); // 0200
|
|
} // 0250
|
|
} // 0300
|
|
test().then(r => r.bar()); // 0350
|
|
%PerformMicrotaskCheckpoint(); // 0400`,
|
|
[{"start":0,"end":449,"count":1},
|
|
{"start":0,"end":301,"count":1},
|
|
{"start":152,"end":253,"count":1},
|
|
{"start":362,"end":374,"count":1}]);
|
|
|
|
// Documents the open bug that causes trailing space after `finally`
|
|
// not to be removed by SourceRangeAstVisitor.
|
|
TestCoverage(
|
|
"https://crbug.com/v8/10628",
|
|
`
|
|
async function abc() { // 0000
|
|
try { // 0050
|
|
return 'abc'; // 0100
|
|
} finally { // 0150
|
|
console.log('in finally'); // 0200
|
|
} // 0250
|
|
} // 0300
|
|
abc(); // 0350
|
|
%PerformMicrotaskCheckpoint(); // 0400
|
|
`,
|
|
[{"start":0,"end":449,"count":1},
|
|
{"start":0,"end":301,"count":1},
|
|
{"start":252,"end":300,"count":0}]);
|
|
|
|
%DebugToggleBlockCoverage(false);
|