Skip to content

Commit 310e9c3

Browse files
Accepted baselines.
1 parent 3292631 commit 310e9c3

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//// [taggedTemplateUntypedTagCall01.ts]
2+
var tag: Function;
3+
tag `Hello world!`;
4+
5+
//// [taggedTemplateUntypedTagCall01.js]
6+
var tag;
7+
(_a = ["Hello world!"], _a.raw = ["Hello world!"], tag(_a));
8+
var _a;
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
=== tests/cases/conformance/es6/templates/taggedTemplateUntypedTagCall01.ts ===
2+
var tag: Function;
3+
>tag : Symbol(tag, Decl(taggedTemplateUntypedTagCall01.ts, 0, 3))
4+
>Function : Symbol(Function, Decl(lib.d.ts, --, --), Decl(lib.d.ts, --, --))
5+
6+
tag `Hello world!`;
7+
>tag : Symbol(tag, Decl(taggedTemplateUntypedTagCall01.ts, 0, 3))
8+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
=== tests/cases/conformance/es6/templates/taggedTemplateUntypedTagCall01.ts ===
2+
var tag: Function;
3+
>tag : Function
4+
>Function : Function
5+
6+
tag `Hello world!`;
7+
>tag `Hello world!` : any
8+
>tag : Function
9+
>`Hello world!` : string
10+

0 commit comments

Comments
 (0)