Skip to content

Commit

Permalink
Update LKG.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbondc committed Apr 14, 2015
1 parent 93550a8 commit 2385710
Show file tree
Hide file tree
Showing 6 changed files with 2,610 additions and 1,239 deletions.
861 changes: 586 additions & 275 deletions bin/tsc.js

Large diffs are not rendered by default.

1,016 changes: 666 additions & 350 deletions bin/tsserver.js

Large diffs are not rendered by default.

20 changes: 18 additions & 2 deletions bin/typescript.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ declare module "typescript" {
}
interface Identifier extends PrimaryExpression {
text: string;
originalKeywordKind?: SyntaxKind;
}
interface QualifiedName extends Node {
left: EntityName;
Expand Down Expand Up @@ -991,8 +992,10 @@ declare module "typescript" {
Anonymous = 32768,
ObjectLiteral = 131072,
ESSymbol = 1048576,
Subset = 2097152,
StringLike = 258,
NumberLike = 132,
SubsetMaybe = 4224,
ObjectType = 48128,
}
interface Type {
Expand All @@ -1010,8 +1013,8 @@ declare module "typescript" {
declaredProperties: Symbol[];
declaredCallSignatures: Signature[];
declaredConstructSignatures: Signature[];
declaredStringIndexType: Type;
declaredNumberIndexType: Type;
declaredStringIndex: IndexType;
declaredNumberIndex: IndexType;
}
interface TypeReference extends ObjectType {
target: GenericType;
Expand All @@ -1026,6 +1029,19 @@ declare module "typescript" {
interface UnionType extends Type {
types: Type[];
}
enum IndexAlphaNumeric {
NO = 0,
YES = 1,
INHERITED = 2,
}
interface IndexType {
kind: IndexKind;
typeOfValue: Type;
typeOfIndex?: Type;
declaredNode?: SignatureDeclaration;
declaredCount?: number;
inherited?: Symbol;
}
interface TypeParameter extends Type {
constraint: Type;
}
Expand Down
Loading

0 comments on commit 2385710

Please sign in to comment.