You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* @internal */typeParameters?: NodeArray<TypeParameterDeclaration>;// Present for use with reporting a grammar error
@@ -4776,6 +4776,7 @@ namespace ts {
4776
4776
immediateTarget?: Symbol;// Immediate target of an alias. May be another alias. Do not access directly, use `checker.getImmediateAliasedSymbol` instead.
4777
4777
target?: Symbol;// Resolved (non-alias) target of an alias
4778
4778
type?: Type;// Type of value symbol
4779
+
writeType?: Type;// Type of value symbol in write contexts
4779
4780
nameType?: Type;// Type associated with a late-bound symbol
4780
4781
uniqueESSymbolType?: Type;// UniqueESSymbol type for a symbol
4781
4782
declaredType?: Type;// Type of class, interface, enum, type alias, or type parameter
Copy file name to clipboardExpand all lines: tests/baselines/reference/abstractPropertyNegative.errors.txt
+3-6
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,4 @@
1
-
tests/cases/compiler/abstractPropertyNegative.ts(10,18): error TS2380: 'get' and 'set' accessor must have the same type.
2
-
tests/cases/compiler/abstractPropertyNegative.ts(11,18): error TS2380: 'get' and 'set' accessor must have the same type.
1
+
tests/cases/compiler/abstractPropertyNegative.ts(10,18): error TS2380: The return type of a 'get' accessor must be assignable to its 'set' accessor type
3
2
tests/cases/compiler/abstractPropertyNegative.ts(13,7): error TS2515: Non-abstract class 'C' does not implement inherited abstract member 'm' from class 'B'.
4
3
tests/cases/compiler/abstractPropertyNegative.ts(13,7): error TS2515: Non-abstract class 'C' does not implement inherited abstract member 'mismatch' from class 'B'.
5
4
tests/cases/compiler/abstractPropertyNegative.ts(13,7): error TS2515: Non-abstract class 'C' does not implement inherited abstract member 'prop' from class 'B'.
0 commit comments