Skip to content

Commit 7094457

Browse files
Accepted baselines.
1 parent 7c90d62 commit 7094457

4 files changed

Lines changed: 26 additions & 26 deletions

tests/baselines/reference/emitVoid0ReturnType.js renamed to tests/baselines/reference/decoratorMetadataForMethodWithNoReturnTypeAnnotation01.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//// [emitVoid0ReturnType.ts]
1+
//// [decoratorMetadataForMethodWithNoReturnTypeAnnotation01.ts]
22

33
declare var decorator: any;
44

@@ -14,7 +14,7 @@ class MyClass {
1414
}
1515

1616

17-
//// [emitVoid0ReturnType.js]
17+
//// [decoratorMetadataForMethodWithNoReturnTypeAnnotation01.js]
1818
var MyClass = (function () {
1919
function MyClass(test, test2) {
2020
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
=== tests/cases/compiler/decoratorMetadataForMethodWithNoReturnTypeAnnotation01.ts ===
2+
3+
declare var decorator: any;
4+
>decorator : Symbol(decorator, Decl(decoratorMetadataForMethodWithNoReturnTypeAnnotation01.ts, 1, 11))
5+
6+
class MyClass {
7+
>MyClass : Symbol(MyClass, Decl(decoratorMetadataForMethodWithNoReturnTypeAnnotation01.ts, 1, 27))
8+
9+
constructor(test: string, test2: number) {
10+
>test : Symbol(test, Decl(decoratorMetadataForMethodWithNoReturnTypeAnnotation01.ts, 4, 16))
11+
>test2 : Symbol(test2, Decl(decoratorMetadataForMethodWithNoReturnTypeAnnotation01.ts, 4, 29))
12+
13+
}
14+
15+
@decorator
16+
>decorator : Symbol(decorator, Decl(decoratorMetadataForMethodWithNoReturnTypeAnnotation01.ts, 1, 11))
17+
18+
doSomething() {
19+
>doSomething : Symbol(doSomething, Decl(decoratorMetadataForMethodWithNoReturnTypeAnnotation01.ts, 6, 5))
20+
21+
}
22+
}
23+

tests/baselines/reference/emitVoid0ReturnType.types renamed to tests/baselines/reference/decoratorMetadataForMethodWithNoReturnTypeAnnotation01.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
=== tests/cases/compiler/emitVoid0ReturnType.ts ===
1+
=== tests/cases/compiler/decoratorMetadataForMethodWithNoReturnTypeAnnotation01.ts ===
22

33
declare var decorator: any;
44
>decorator : any

tests/baselines/reference/emitVoid0ReturnType.symbols

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)