Accepted baselines.

This commit is contained in:
Daniel Rosenwasser 2016-04-07 00:42:04 -07:00
parent c57e54eeae
commit 3a35aa30da
3 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,13 @@
//// [useStrictLikePrologueString01.ts]
"hey!"
" use strict "
export function f() {
}
//// [useStrictLikePrologueString01.js]
"hey!";
" use strict ";
function f() {
}
exports.f = f;

View file

@ -0,0 +1,7 @@
=== tests/cases/compiler/useStrictLikePrologueString01.ts ===
"hey!"
" use strict "
export function f() {
>f : Symbol(f, Decl(useStrictLikePrologueString01.ts, 2, 14))
}

View file

@ -0,0 +1,11 @@
=== tests/cases/compiler/useStrictLikePrologueString01.ts ===
"hey!"
>"hey!" : string
" use strict "
>" use strict " : string
export function f() {
>f : () => void
}