Renaming of scope names to match other grammars
Note jsx attribute value is colored as string with this and its a TODO
This commit is contained in:
Родитель
91a4709249
Коммит
8c4e427918
|
@ -23,7 +23,7 @@ repository:
|
|||
name: meta.var-single-variable.expr.ts
|
||||
begin: \b([a-zA-Z_$][\w$]*)\s*(=?)
|
||||
beginCaptures:
|
||||
'1': { name: variable.ts }
|
||||
'1': { name: variable.other.readwrite.ts }
|
||||
end: (?=$|[;,])
|
||||
patterns:
|
||||
- include: '#ternary-expression'
|
||||
|
@ -58,16 +58,28 @@ repository:
|
|||
- include: '#import-operator'
|
||||
- include: '#expression-operator'
|
||||
- include: '#imply-operator'
|
||||
- include: '#relational-operator'
|
||||
- include: '#arithmetic-operator'
|
||||
- include: '#logic-operator'
|
||||
- include: '#assignment-operator'
|
||||
- include: '#operators'
|
||||
- include: '#type-primitive'
|
||||
- include: '#function-call'
|
||||
|
||||
control-statement:
|
||||
name: keyword.control.ts
|
||||
match: (?<!\.)\b(break|catch|continue|debugger|declare|do|else|finally|for|if|return|switch|throw|try|while|with|super|case|default|yield)\b
|
||||
patterns:
|
||||
- name: keyword.control.trycatch.ts
|
||||
match: (?<!\.)\b(catch|finally|throw|try)\b
|
||||
- name: keyword.control.loop.ts
|
||||
match: (?<!\.)\b(break|continue|do|for|goto|while)\b
|
||||
- name: keyword.control.flow.ts
|
||||
match: (?<!\.)\b(await|return|yield)\b
|
||||
- name: keyword.control.switch.ts
|
||||
match: (?<!\.)\b(case|default|switch)\b
|
||||
- name: keyword.control.conditional.ts
|
||||
match: (?<!\.)\b(else|if)\b
|
||||
- name: keyword.control.with.ts
|
||||
match: (?<!\.)\b(with)\b
|
||||
- name: keyword.other.ts
|
||||
match: (?<!\.)\b(debugger)\b
|
||||
- name: storage.modifier.ts
|
||||
match: (?<!\.)\b(declare)\b
|
||||
|
||||
declaration:
|
||||
name: meta.declaration.ts
|
||||
|
@ -81,13 +93,13 @@ repository:
|
|||
name: meta.type.declaration.ts
|
||||
begin: \b(type)\b\s+([a-zA-Z_$][\w$]*)\s*
|
||||
beginCaptures:
|
||||
'1': { name: keyword.other.ts }
|
||||
'2': { name: entity.name.class.ts }
|
||||
'1': { name: storage.type.type.ts }
|
||||
'2': { name: entity.name.type.ts }
|
||||
end: (?=$|[,);>]|var|type|function|class|interface)
|
||||
patterns:
|
||||
- include: '#type-parameters'
|
||||
- include: '#type'
|
||||
- name: keyword.operator.comparison.ts
|
||||
- name: keyword.operator.assignment.ts
|
||||
match: '=\s*'
|
||||
|
||||
enum-declaration:
|
||||
|
@ -95,19 +107,20 @@ repository:
|
|||
match: (?:\b(const)\s+)?\b(enum)\s+([a-zA-Z_$][\w$]*)
|
||||
captures:
|
||||
'1': { name: storage.modifier.ts}
|
||||
'2': { name: storage.type.ts }
|
||||
'3': { name: entity.name.class.ts }
|
||||
'2': { name: storage.type.enum.ts }
|
||||
'3': { name: entity.name.type.enum.ts }
|
||||
|
||||
object-declaration:
|
||||
name: meta.declaration.object.ts
|
||||
begin: '\b(?:(export)\s+)?\b(?:(abstract)\s+)?\b(?<!\.)(class|interface)\b'
|
||||
begin: '\b(?:(export)\s+)?\b(?:(abstract)\s+)?\b(?<!\.)(?:(class)|(interface))\b'
|
||||
beginCaptures:
|
||||
'1': { name: storage.type.ts }
|
||||
'1': { name: keyword.control.export.ts }
|
||||
'2': { name: storage.modifier.ts }
|
||||
'3': { name: storage.type.ts }
|
||||
'3': { name: storage.type.class.ts }
|
||||
'4': { name: storage.type.interface.ts }
|
||||
end: (?<=\})
|
||||
endCaptures:
|
||||
'1': { name: brace.curly.ts }
|
||||
'1': { name: punctuation.definition.block.ts }
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
- include: '#object-heritage' # Must be before object-name to consume the "extends" keyword.
|
||||
|
@ -125,10 +138,10 @@ repository:
|
|||
name: meta.object.heritage.ts
|
||||
begin: '(?:\b(extends|implements)\b)'
|
||||
beginCaptures:
|
||||
'1': { name: keyword.other.ts }
|
||||
'1': { name: storage.modifier.ts }
|
||||
end: (?=\{)
|
||||
endCaptures:
|
||||
'1': { name: brace.curly.ts }
|
||||
'1': { name: punctuation.definition.block.ts }
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
- include: '#object-heritage'
|
||||
|
@ -139,16 +152,16 @@ repository:
|
|||
name: meta.object.heritage.parent.ts
|
||||
match: '(?:\b([a-zA-Z_$][\w$]*)\b)'
|
||||
captures:
|
||||
'1': { name: support.type.ts }
|
||||
'1': { name: entity.other.inherited-class.ts }
|
||||
|
||||
object-body:
|
||||
name: meta.object.body.ts
|
||||
begin: \{
|
||||
beginCaptures:
|
||||
'0': { name: meta.brace.curly.ts }
|
||||
'0': { name: punctuation.definition.block.ts }
|
||||
end: \}
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.curly.ts }
|
||||
'0': { name: punctuation.definition.block.ts }
|
||||
patterns:
|
||||
- include: "#string"
|
||||
- include: '#comment'
|
||||
|
@ -165,10 +178,10 @@ repository:
|
|||
name: meta.object.type.ts
|
||||
begin: \{
|
||||
beginCaptures:
|
||||
'0': { name: meta.brace.curly.ts }
|
||||
'0': { name: punctuation.definition.block.ts }
|
||||
end: \}
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.curly.ts }
|
||||
'0': { name: punctuation.definition.block.ts }
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
- include: '#field-declaration'
|
||||
|
@ -180,8 +193,8 @@ repository:
|
|||
name: meta.field.declaration.ts
|
||||
begin: (?<!\()\s*((?:\b[a-zA-Z_$][\w$]*)|(?:\'[^']*\')|(?:\"[^"]*\"))\s*(\?\s*)?(?=(=|:))
|
||||
beginCaptures:
|
||||
'1': { name: variable.ts }
|
||||
'2': { name: keyword.others.ts }
|
||||
'1': { name: variable.object.property.ts }
|
||||
'2': { name: keyword.operator.optional.ts }
|
||||
end: '(?=\}|;|,|$)|(?<=\})'
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
@ -192,12 +205,12 @@ repository:
|
|||
beginCaptures:
|
||||
'1': { name: storage.modifier.ts } # captures keyword (abstract)
|
||||
'2': { name: storage.modifier.ts } # captures keyword (public or private or protected)
|
||||
'3': { name: storage.modifier.ts } # captures keyword (async)
|
||||
'3': { name: storage.modifier.async.ts } # captures keyword (async)
|
||||
'4': { name: storage.type.property.ts } # captures keyword (get|set)
|
||||
'5': { name: keyword.operator.ts } # captures keyword (new)
|
||||
'5': { name: keyword.operator.new.ts } # captures keyword (new)
|
||||
'6': { name: storage.type.ts } # captures keyword (constructor)
|
||||
'7': { name: entity.name.function.ts } # captures method name ([a-zA-Z_$][\.\w$]*)
|
||||
'8': { name: keyword.operator.ts } # captures (\??)
|
||||
'8': { name: keyword.operator.optional.ts } # captures (\??)
|
||||
end: '(?=\}|;|,)|(?<=\})'
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
|
@ -216,9 +229,9 @@ repository:
|
|||
'3': { name: storage.modifier.ts } # captures keyword (async)
|
||||
'4': { name: storage.type.property.ts } # captures keyword (get|set)
|
||||
'5': { name: keyword.operator.ts } # captures keyword (new)
|
||||
'6': { name: storage.type.ts } # captures keyword (constructor)
|
||||
'6': { name: entity.name.function.constructor.ts } # captures keyword (constructor)
|
||||
'7': { name: entity.name.function.ts } # captures method name ([a-zA-Z_$][\.\w$]*)
|
||||
'8': { name: keyword.operator.ts } # captures (\??)
|
||||
'8': { name: keyword.operator.optional.ts } # captures (\??)
|
||||
|
||||
indexer-declaration:
|
||||
name: meta.indexer.declaration.ts
|
||||
|
@ -228,7 +241,7 @@ repository:
|
|||
end: (\])\s*(\?\s*)?|$
|
||||
endCaptures:
|
||||
'1': { name: meta.brace.square.ts }
|
||||
'2': { name: keyword.others.ts }
|
||||
'2': { name: keyword.operator.optional.ts }
|
||||
patterns:
|
||||
- include: '#type-annotation'
|
||||
- include: '#indexer-parameter'
|
||||
|
@ -244,8 +257,8 @@ repository:
|
|||
name: meta.function.ts
|
||||
begin: \b(?:(export)\s+)?(?:(async)\s+)?(function\b)(?:\s+([a-zA-Z_$][\w$]*))?\s*
|
||||
beginCaptures:
|
||||
'1': { name: storage.type.ts }
|
||||
'2': { name: storage.modifier.ts }
|
||||
'1': { name: keyword.control.export.ts }
|
||||
'2': { name: storage.modifier.async.ts }
|
||||
'3': { name: storage.type.function.ts }
|
||||
'4': { name: entity.name.function.ts }
|
||||
end: (?=;|\})|(?<=\})
|
||||
|
@ -261,7 +274,7 @@ repository:
|
|||
name: meta.function.overload.ts
|
||||
match: \b(?:(export)\s+)?(function\b)(?:\s+([a-zA-Z_$][\w$]*))?\s*
|
||||
captures:
|
||||
'1': { name: storage.type.ts }
|
||||
'1': { name: keyword.control.export.ts }
|
||||
'2': { name: storage.type.function.ts }
|
||||
'3': { name: entity.name.function.ts }
|
||||
|
||||
|
@ -269,10 +282,10 @@ repository:
|
|||
name: meta.block.ts
|
||||
begin: \{
|
||||
beginCaptures:
|
||||
'0': { name: meta.brace.curly.ts }
|
||||
'0': { name: punctuation.definition.block.ts }
|
||||
end: \}
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.curly.ts }
|
||||
'0': { name: punctuation.definition.block.ts }
|
||||
patterns:
|
||||
- include: '#object-member'
|
||||
- include: '#expression'
|
||||
|
@ -281,10 +294,10 @@ repository:
|
|||
name: meta.decl.block.ts
|
||||
begin: \{
|
||||
beginCaptures:
|
||||
'0': { name: meta.brace.curly.ts }
|
||||
'0': { name: punctuation.definition.block.ts }
|
||||
end: \}
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.curly.ts }
|
||||
'0': { name: punctuation.definition.block.ts }
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
||||
|
@ -293,9 +306,9 @@ repository:
|
|||
match: '(?:\s*\b(public|private|protected)\b\s+)?(\.\.\.)?\s*([a-zA-Z_$][\w$]*)\s*(\??)'
|
||||
captures:
|
||||
'1': { name: storage.modifier.ts }
|
||||
'2': { name: keyword.others.ts }
|
||||
'2': { name: keyword.operator.spread.ts }
|
||||
'3': { name: variable.parameter.ts }
|
||||
'4': { name: keyword.others.ts }
|
||||
'4': { name: keyword.operator.optional.ts }
|
||||
|
||||
return-type:
|
||||
name: meta.return.type.ts
|
||||
|
@ -330,10 +343,10 @@ repository:
|
|||
name: meta.function.type.parameter.ts
|
||||
begin: \(
|
||||
beginCaptures:
|
||||
'0': { name: meta.brace.round.ts }
|
||||
'0': { name: punctuation.definition.parameters.begin.ts }
|
||||
end: \)
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.round.ts }
|
||||
'0': { name: punctuation.definition.parameters.end.ts }
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
- include: '#parameter-name'
|
||||
|
@ -342,9 +355,9 @@ repository:
|
|||
|
||||
type-primitive:
|
||||
name: meta.type.primitive.ts
|
||||
match: '\b(string|number|boolean|symbol|any|void)\b'
|
||||
match: '\b(string|number|boolean|symbol|any|void|never)\b'
|
||||
captures:
|
||||
'1': { name: support.type.ts }
|
||||
'1': { name: support.type.primitive.ts }
|
||||
|
||||
# Parenthesis can contain either types and function parameters
|
||||
# (number | string) or (param: number, param2: string)
|
||||
|
@ -352,17 +365,20 @@ repository:
|
|||
# (number | (param: number, param2: string) => void)
|
||||
type-paren-or-function-type-parameters:
|
||||
name: meta.type.paren.cover.ts
|
||||
begin: '(?:\b(new)\b)?\s*\('
|
||||
begin: '(?:\b(new)\b)?\s*(\()'
|
||||
beginCaptures:
|
||||
'1': { name: keyword.control.ts }
|
||||
'1': { name: keyword.control.new.ts }
|
||||
'2': { name: meta.brace.round.ts }
|
||||
end: '\)'
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.round.ts }
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
- include: '#type'
|
||||
- include: '#function-type-parameters'
|
||||
|
||||
await-modifier:
|
||||
name: storage.modifier.ts
|
||||
name: storage.modifier.await.ts
|
||||
match: '\bawait\b'
|
||||
|
||||
type-operator:
|
||||
|
@ -373,7 +389,7 @@ repository:
|
|||
name: meta.type.function.return.ts
|
||||
begin: '=>'
|
||||
beginCaptures:
|
||||
'0': { name: keyword.operator.ts }
|
||||
'0': { name: storage.type.function.arrow.ts }
|
||||
end: (?=\s*[,\)\{=;>]|//|$)
|
||||
patterns:
|
||||
- include: '#type'
|
||||
|
@ -401,12 +417,12 @@ repository:
|
|||
begin: '([a-zA-Z_$][\w$]*)?(<)'
|
||||
beginCaptures:
|
||||
'1': { name: entity.name.type.ts }
|
||||
'2': { name: meta.brace.angle.ts }
|
||||
'2': { name: punctuation.definition.typeparameters.begin.ts }
|
||||
end: '(?=$)|(>)'
|
||||
endCaptures:
|
||||
'2': { name: meta.brace.angle.ts }
|
||||
'2': { name: punctuation.definition.typeparameters.end.ts }
|
||||
patterns:
|
||||
- name: keyword.other.ts
|
||||
- name: storage.modifier.ts
|
||||
match: '\b(extends)\b'
|
||||
- include: '#comment'
|
||||
- include: '#type'
|
||||
|
@ -414,7 +430,7 @@ repository:
|
|||
variable-initializer:
|
||||
begin: (=)
|
||||
beginCaptures:
|
||||
'1': { name: keyword.operator.comparison.ts }
|
||||
'1': { name: keyword.operator.assignment.ts }
|
||||
end: (?=$|[,);=])
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
@ -438,10 +454,7 @@ repository:
|
|||
- include: '#import-operator'
|
||||
- include: '#expression-operator'
|
||||
- include: '#imply-operator'
|
||||
- include: '#relational-operator'
|
||||
- include: '#arithmetic-operator'
|
||||
- include: '#logic-operator'
|
||||
- include: '#assignment-operator'
|
||||
- include: '#operators'
|
||||
- include: '#storage-keyword'
|
||||
- include: '#type-primitive'
|
||||
- include: '#function-call'
|
||||
|
@ -452,7 +465,7 @@ repository:
|
|||
name: switch-expression.expr.ts
|
||||
begin: \b(switch)\b\s*\(
|
||||
beginCaptures:
|
||||
'1': { name: keyword.control.ts }
|
||||
'1': { name: keyword.control.switch.ts }
|
||||
end: \)
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
@ -460,6 +473,8 @@ repository:
|
|||
switch-block:
|
||||
name: switch-block.expr.ts
|
||||
begin: '{'
|
||||
beginCaptures:
|
||||
'0': { name: punctuation.definition.block.ts }
|
||||
end: (?=\})
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
@ -468,7 +483,7 @@ repository:
|
|||
name: case-clause.expr.ts
|
||||
begin: '(?<!\.)\b(case|default(?=:))\b'
|
||||
beginCaptures:
|
||||
'1': { name: keyword.control.ts }
|
||||
'1': { name: keyword.control.switch.ts }
|
||||
end: ':'
|
||||
patterns:
|
||||
- include: '#expression-type'
|
||||
|
@ -477,16 +492,20 @@ repository:
|
|||
name: switch-statement.expr.ts
|
||||
begin: (?=\bswitch\b\s*\()
|
||||
end: '}'
|
||||
endCaptures:
|
||||
'0': {name: punctuation.definition.block.ts}
|
||||
patterns:
|
||||
- include: '#switch-expression'
|
||||
- include: '#switch-block'
|
||||
|
||||
for-in-simple:
|
||||
name: forin.expr.ts
|
||||
match: (?<=\()\s*\b(var|let|const)\s+([a-zA-Z_$][\w$]*)\s+(in|of)\b
|
||||
match: (?<=\()\s*\b(var|let|const)\s+([a-zA-Z_$][\w$]*)\s+(?:(in)|(of))\b
|
||||
captures:
|
||||
'1': { name: storage.type.ts }
|
||||
'3': { name: keyword.others.ts }
|
||||
'2': { name: variable.other.readwrite.ts }
|
||||
'3': { name: keyword.operator.in.ts }
|
||||
'4': { name: keyword.operator.of.ts }
|
||||
|
||||
function-call:
|
||||
name: functioncall.expr.ts
|
||||
|
@ -514,7 +533,7 @@ repository:
|
|||
name: new.expr.ts
|
||||
begin: '\b(new)\b'
|
||||
beginCaptures:
|
||||
'1': { name: keyword.others.ts }
|
||||
'1': { name: keyword.operator.new.ts }
|
||||
# new-expr ends just before any type or call arguments. Type arguments will be picked up by #cast.
|
||||
end: '(?=[(;]|$)'
|
||||
patterns:
|
||||
|
@ -529,32 +548,59 @@ repository:
|
|||
- include: '#expression'
|
||||
|
||||
expression-operator:
|
||||
name: keyword.others.ts
|
||||
match: \b(delete|in|instanceof|new|typeof|as|is|of)\b
|
||||
patterns:
|
||||
- name: keyword.operator.delete.ts
|
||||
match: \bdelete\b
|
||||
- name: keyword.operator.in.ts
|
||||
match: \bin\b
|
||||
- name: keyword.operator.of.ts
|
||||
match: \bof\b
|
||||
- name: keyword.operator.instanceof.ts
|
||||
match: \binstanceof\b
|
||||
- name: keyword.operator.new.ts
|
||||
match: \bnew\b
|
||||
- name: keyword.operator.typeof.ts
|
||||
match: \btypeof\b
|
||||
- name: keyword.operator.void.ts
|
||||
match: \bvoid\b
|
||||
- name: keyword.control.as.ts
|
||||
match: \bas\b
|
||||
- name: keyword.operator.is.ts
|
||||
match: \bis\b
|
||||
|
||||
imply-operator:
|
||||
name: keyword.operator.ts
|
||||
name: storage.type.function.arrow.ts
|
||||
match: =>
|
||||
|
||||
import-operator:
|
||||
name: keyword.control.import.include.ts
|
||||
match: \b(import|from)\b
|
||||
patterns:
|
||||
- name: keyword.control.import.ts
|
||||
match: \bimport\b
|
||||
- name: keyword.control.from.ts
|
||||
match: \bfrom\b
|
||||
|
||||
arithmetic-operator:
|
||||
name: keyword.operator.arithmetic.ts
|
||||
match: \*|/|\-\-|\-|\+\+|\+|%
|
||||
|
||||
relational-operator:
|
||||
name: keyword.operator.comparison.ts
|
||||
match: ===|!==|==|!=|<=|>=|<>|=|<|>
|
||||
|
||||
assignment-operator:
|
||||
name: keyword.operator.assignment.ts
|
||||
match: <<=|>>>=|>>=|\*=|(?<!\()/=|%=|\+=|\-=|&=|\^=
|
||||
|
||||
logic-operator:
|
||||
name: keyword.operator.arithmetic.ts
|
||||
match: \!|&&|&|~|\^|\|\||\|
|
||||
operators:
|
||||
patterns:
|
||||
- name: keyword.operator.assignment.compound.ts
|
||||
match: \*=|(?<!\()/=|%=|\+=|\-=
|
||||
- name: keyword.operator.assignment.compound.bitwise.ts
|
||||
match: \&=|\^=|<<=|>>=|>>>=|\|=
|
||||
- name: keyword.operator.comparison.ts
|
||||
match: ===|!==|==|!=
|
||||
- name: keyword.operator.relational.ts
|
||||
match: <=|>=|<>|=|<|>
|
||||
- name: keyword.operator.logical.ts
|
||||
match: \!|&&|\|\|
|
||||
- name: keyword.operator.bitwise.ts
|
||||
match: \&|~|\^|\|
|
||||
- name: keyword.operator.assignment.ts
|
||||
match: \=
|
||||
- name: keyword.operator.decrement.ts
|
||||
match: --
|
||||
- name: keyword.operator.increment.ts
|
||||
match: \+\+
|
||||
- name: keyword.operator.arithmetic.ts
|
||||
match: '%|\*|/|-|\+'
|
||||
|
||||
storage-keyword:
|
||||
name: storage.type.ts
|
||||
|
@ -563,10 +609,10 @@ repository:
|
|||
paren-expression:
|
||||
begin: \(
|
||||
beginCaptures:
|
||||
'0': {name: meta.brace.paren.ts }
|
||||
'0': {name: meta.brace.round.ts }
|
||||
end: \)
|
||||
endCaptures:
|
||||
'0': {name: meta.brace.paren.ts }
|
||||
'0': {name: meta.brace.round.ts }
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
||||
|
@ -751,6 +797,7 @@ repository:
|
|||
- include: '#numericConstant-literal'
|
||||
- include: '#array-literal'
|
||||
- include: '#this-literal'
|
||||
- include: '#super-literal'
|
||||
|
||||
array-literal:
|
||||
name: meta.array.literal.ts
|
||||
|
@ -804,9 +851,13 @@ repository:
|
|||
match: \bnull\b
|
||||
|
||||
this-literal:
|
||||
name: constant.language.this.ts
|
||||
name: variable.language.this.ts
|
||||
match: \bthis\b
|
||||
|
||||
super-literal:
|
||||
name: variable.language.super.ts
|
||||
match: \bsuper\b
|
||||
|
||||
undefined-literal:
|
||||
name: constant.language.undefined.ts
|
||||
match: \bundefined\b
|
||||
|
@ -823,7 +874,7 @@ repository:
|
|||
match: \b(public|protected|private)\b
|
||||
|
||||
static-modifier:
|
||||
name: keyword.other.ts
|
||||
name: storage.modifier.ts
|
||||
match: \b(static)\b
|
||||
|
||||
property-accessor:
|
||||
|
|
|
@ -24,13 +24,6 @@
|
|||
<key>name</key>
|
||||
<string>storage.modifier.ts</string>
|
||||
</dict>
|
||||
<key>arithmetic-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\*|/|\-\-|\-|\+\+|\+|%</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.arithmetic.ts</string>
|
||||
</dict>
|
||||
<key>array-literal</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
|
@ -63,19 +56,12 @@
|
|||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>assignment-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string><<=|>>>=|>>=|\*=|(?<!\()/=|%=|\+=|\-=|&=|\^=</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.assignment.ts</string>
|
||||
</dict>
|
||||
<key>await-modifier</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bawait\b</string>
|
||||
<key>name</key>
|
||||
<string>storage.modifier.ts</string>
|
||||
<string>storage.modifier.await.ts</string>
|
||||
</dict>
|
||||
<key>block</key>
|
||||
<dict>
|
||||
|
@ -86,7 +72,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.ts</string>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -96,7 +82,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.ts</string>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -140,7 +126,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.control.ts</string>
|
||||
<string>keyword.control.switch.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -267,10 +253,57 @@
|
|||
</dict>
|
||||
<key>control-statement</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(break|catch|continue|debugger|declare|do|else|finally|for|if|return|switch|throw|try|while|with|super|case|default|yield)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.ts</string>
|
||||
<key>patterns</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(catch|finally|throw|try)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.trycatch.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(break|continue|do|for|goto|while)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.loop.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(await|return|yield)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.flow.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(case|default|switch)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.switch.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(else|if)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.conditional.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(with)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.with.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(debugger)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.other.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(declare)\b</string>
|
||||
<key>name</key>
|
||||
<string>storage.modifier.ts</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>decl-block</key>
|
||||
<dict>
|
||||
|
@ -281,7 +314,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.ts</string>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -291,7 +324,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.ts</string>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -379,12 +412,12 @@
|
|||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.ts</string>
|
||||
<string>storage.type.enum.ts</string>
|
||||
</dict>
|
||||
<key>3</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>entity.name.class.ts</string>
|
||||
<string>entity.name.type.enum.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
|
@ -464,19 +497,7 @@
|
|||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#relational-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#arithmetic-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#logic-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#assignment-operator</string>
|
||||
<string>#operators</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
|
@ -502,10 +523,63 @@
|
|||
</dict>
|
||||
<key>expression-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\b(delete|in|instanceof|new|typeof|as|is|of)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.others.ts</string>
|
||||
<key>patterns</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bdelete\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.delete.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bin\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.in.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bof\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.of.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\binstanceof\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.instanceof.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bnew\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.new.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\btypeof\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.typeof.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bvoid\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.void.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bas\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.as.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bis\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.is.ts</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>expression-type</key>
|
||||
<dict>
|
||||
|
@ -555,19 +629,7 @@
|
|||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#relational-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#arithmetic-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#logic-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#assignment-operator</string>
|
||||
<string>#operators</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
|
@ -588,12 +650,12 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>variable.ts</string>
|
||||
<string>variable.object.property.ts</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.ts</string>
|
||||
<string>keyword.operator.optional.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -617,14 +679,24 @@
|
|||
<key>name</key>
|
||||
<string>storage.type.ts</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>variable.other.readwrite.ts</string>
|
||||
</dict>
|
||||
<key>3</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.ts</string>
|
||||
<string>keyword.operator.in.ts</string>
|
||||
</dict>
|
||||
<key>4</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.of.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
<string>(?<=\()\s*\b(var|let|const)\s+([a-zA-Z_$][\w$]*)\s+(in|of)\b</string>
|
||||
<string>(?<=\()\s*\b(var|let|const)\s+([a-zA-Z_$][\w$]*)\s+(?:(in)|(of))\b</string>
|
||||
<key>name</key>
|
||||
<string>forin.expr.ts</string>
|
||||
</dict>
|
||||
|
@ -657,12 +729,12 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.ts</string>
|
||||
<string>keyword.control.export.ts</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.modifier.ts</string>
|
||||
<string>storage.modifier.async.ts</string>
|
||||
</dict>
|
||||
<key>3</key>
|
||||
<dict>
|
||||
|
@ -714,7 +786,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.ts</string>
|
||||
<string>keyword.control.export.ts</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
|
@ -741,7 +813,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.round.ts</string>
|
||||
<string>punctuation.definition.parameters.begin.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -751,7 +823,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.round.ts</string>
|
||||
<string>punctuation.definition.parameters.end.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -781,14 +853,25 @@
|
|||
<key>match</key>
|
||||
<string>=></string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.ts</string>
|
||||
<string>storage.type.function.arrow.ts</string>
|
||||
</dict>
|
||||
<key>import-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\b(import|from)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.import.include.ts</string>
|
||||
<key>patterns</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bimport\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.import.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bfrom\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.from.ts</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>indexer-declaration</key>
|
||||
<dict>
|
||||
|
@ -814,7 +897,7 @@
|
|||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.ts</string>
|
||||
<string>keyword.operator.optional.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -884,15 +967,12 @@
|
|||
<key>include</key>
|
||||
<string>#this-literal</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#super-literal</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>logic-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\!|&&|&|~|\^|\|\||\|</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.arithmetic.ts</string>
|
||||
</dict>
|
||||
<key>method-declaration</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
|
@ -912,7 +992,7 @@
|
|||
<key>3</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.modifier.ts</string>
|
||||
<string>storage.modifier.async.ts</string>
|
||||
</dict>
|
||||
<key>4</key>
|
||||
<dict>
|
||||
|
@ -922,7 +1002,7 @@
|
|||
<key>5</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.ts</string>
|
||||
<string>keyword.operator.new.ts</string>
|
||||
</dict>
|
||||
<key>6</key>
|
||||
<dict>
|
||||
|
@ -937,7 +1017,7 @@
|
|||
<key>8</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.ts</string>
|
||||
<string>keyword.operator.optional.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1004,7 +1084,7 @@
|
|||
<key>6</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.ts</string>
|
||||
<string>entity.name.function.constructor.ts</string>
|
||||
</dict>
|
||||
<key>7</key>
|
||||
<dict>
|
||||
|
@ -1014,7 +1094,7 @@
|
|||
<key>8</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.ts</string>
|
||||
<string>keyword.operator.optional.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
|
@ -1031,7 +1111,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.ts</string>
|
||||
<string>keyword.operator.new.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1160,7 +1240,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.ts</string>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1170,7 +1250,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.ts</string>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -1222,13 +1302,13 @@
|
|||
<key>object-declaration</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
<string>\b(?:(export)\s+)?\b(?:(abstract)\s+)?\b(?<!\.)(class|interface)\b</string>
|
||||
<string>\b(?:(export)\s+)?\b(?:(abstract)\s+)?\b(?<!\.)(?:(class)|(interface))\b</string>
|
||||
<key>beginCaptures</key>
|
||||
<dict>
|
||||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.ts</string>
|
||||
<string>keyword.control.export.ts</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
|
@ -1238,7 +1318,12 @@
|
|||
<key>3</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.ts</string>
|
||||
<string>storage.type.class.ts</string>
|
||||
</dict>
|
||||
<key>4</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.interface.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1248,7 +1333,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>brace.curly.ts</string>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -1286,7 +1371,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.other.ts</string>
|
||||
<string>storage.modifier.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1296,7 +1381,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>brace.curly.ts</string>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -1328,7 +1413,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>support.type.ts</string>
|
||||
<string>entity.other.inherited-class.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
|
@ -1367,6 +1452,72 @@
|
|||
<key>name</key>
|
||||
<string>meta.object.name.ts</string>
|
||||
</dict>
|
||||
<key>operators</key>
|
||||
<dict>
|
||||
<key>patterns</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\*=|(?<!\()/=|%=|\+=|\-=</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.assignment.compound.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\&=|\^=|<<=|>>=|>>>=|\|=</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.assignment.compound.bitwise.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>===|!==|==|!=</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.comparison.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string><=|>=|<>|=|<|></string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.relational.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\!|&&|\|\|</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.logical.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\&|~|\^|\|</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.bitwise.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\=</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.assignment.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>--</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.decrement.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\+\+</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.increment.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>%|\*|/|-|\+</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.arithmetic.ts</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>parameter-name</key>
|
||||
<dict>
|
||||
<key>captures</key>
|
||||
|
@ -1379,7 +1530,7 @@
|
|||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.ts</string>
|
||||
<string>keyword.operator.spread.ts</string>
|
||||
</dict>
|
||||
<key>3</key>
|
||||
<dict>
|
||||
|
@ -1389,7 +1540,7 @@
|
|||
<key>4</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.ts</string>
|
||||
<string>keyword.operator.optional.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
|
@ -1406,7 +1557,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.paren.ts</string>
|
||||
<string>meta.brace.round.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1416,7 +1567,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.paren.ts</string>
|
||||
<string>meta.brace.round.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>patterns</key>
|
||||
|
@ -1766,13 +1917,6 @@
|
|||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>relational-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>===|!==|==|!=|<=|>=|<>|=|<|></string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.comparison.ts</string>
|
||||
</dict>
|
||||
<key>return-type</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
|
@ -1794,7 +1938,7 @@
|
|||
<key>match</key>
|
||||
<string>\b(static)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.other.ts</string>
|
||||
<string>storage.modifier.ts</string>
|
||||
</dict>
|
||||
<key>storage-keyword</key>
|
||||
<dict>
|
||||
|
@ -1826,10 +1970,25 @@
|
|||
<key>name</key>
|
||||
<string>constant.character.escape.ts</string>
|
||||
</dict>
|
||||
<key>super-literal</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bsuper\b</string>
|
||||
<key>name</key>
|
||||
<string>variable.language.super.ts</string>
|
||||
</dict>
|
||||
<key>switch-block</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
<string>{</string>
|
||||
<key>beginCaptures</key>
|
||||
<dict>
|
||||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
<string>(?=\})</string>
|
||||
<key>name</key>
|
||||
|
@ -1851,7 +2010,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.control.ts</string>
|
||||
<string>keyword.control.switch.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1872,6 +2031,14 @@
|
|||
<string>(?=\bswitch\b\s*\()</string>
|
||||
<key>end</key>
|
||||
<string>}</string>
|
||||
<key>endCaptures</key>
|
||||
<dict>
|
||||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
<string>switch-statement.expr.ts</string>
|
||||
<key>patterns</key>
|
||||
|
@ -1996,7 +2163,7 @@
|
|||
<key>match</key>
|
||||
<string>\bthis\b</string>
|
||||
<key>name</key>
|
||||
<string>constant.language.this.ts</string>
|
||||
<string>variable.language.this.ts</string>
|
||||
</dict>
|
||||
<key>type</key>
|
||||
<dict>
|
||||
|
@ -2075,12 +2242,12 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.other.ts</string>
|
||||
<string>storage.type.type.ts</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>entity.name.class.ts</string>
|
||||
<string>entity.name.type.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -2101,7 +2268,7 @@
|
|||
<key>match</key>
|
||||
<string>=\s*</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.comparison.ts</string>
|
||||
<string>keyword.operator.assignment.ts</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
|
@ -2114,7 +2281,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.ts</string>
|
||||
<string>storage.type.function.arrow.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -2153,7 +2320,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.ts</string>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -2163,7 +2330,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.ts</string>
|
||||
<string>punctuation.definition.block.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -2213,7 +2380,7 @@
|
|||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.angle.ts</string>
|
||||
<string>punctuation.definition.typeparameters.begin.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -2223,7 +2390,7 @@
|
|||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.angle.ts</string>
|
||||
<string>punctuation.definition.typeparameters.end.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -2234,7 +2401,7 @@
|
|||
<key>match</key>
|
||||
<string>\b(extends)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.other.ts</string>
|
||||
<string>storage.modifier.ts</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
|
@ -2249,17 +2416,30 @@
|
|||
<key>type-paren-or-function-type-parameters</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
<string>(?:\b(new)\b)?\s*\(</string>
|
||||
<string>(?:\b(new)\b)?\s*(\()</string>
|
||||
<key>beginCaptures</key>
|
||||
<dict>
|
||||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.control.ts</string>
|
||||
<string>keyword.control.new.ts</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.round.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
<string>\)</string>
|
||||
<key>endCaptures</key>
|
||||
<dict>
|
||||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.round.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
<string>meta.type.paren.cover.ts</string>
|
||||
<key>patterns</key>
|
||||
|
@ -2285,11 +2465,11 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>support.type.ts</string>
|
||||
<string>support.type.primitive.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
<string>\b(string|number|boolean|symbol|any|void)\b</string>
|
||||
<string>\b(string|number|boolean|symbol|any|void|never)\b</string>
|
||||
<key>name</key>
|
||||
<string>meta.type.primitive.ts</string>
|
||||
</dict>
|
||||
|
@ -2373,7 +2553,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>variable.ts</string>
|
||||
<string>variable.other.readwrite.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -2413,7 +2593,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.comparison.ts</string>
|
||||
<string>keyword.operator.assignment.ts</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<array>
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>storage.modifier.ts, storage.type.ts, storage.type.function.ts, storage.type.property.ts</string>
|
||||
<string>storage.modifier, storage.type, keyword.control, keyword.others.ts, keyword.operator.new.ts, </string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
@ -17,16 +17,7 @@
|
|||
</dict>
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>keyword, keyword.control.ts, keyword.others.ts, keyword.control.import.include.ts</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>keyword</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>support.type.ts, constant.language.boolean.true.ts, constant.language.boolean.false.ts, constant.language.null.ts, constant.language.this.ts</string>
|
||||
<string>support.type, constant.language, variable.language</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
@ -36,7 +27,7 @@
|
|||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>string.quoted.double.ts, string.quoted.single.ts, punctuation.definition.string.begin.ts, punctuation.definition.string.end.ts, string.template.ts, punctuation.definition.template-expression.begin.ts, punctuation.definition.template-expression.end.ts, constant.character.escape.ts</string>
|
||||
<string>string, punctuation.definition.string, punctuation.definition.template-expression, constant.character.escape.ts</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
@ -45,7 +36,7 @@
|
|||
</dict>
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>string.regex.ts, keyword.control.anchor.regexp, keyword.other.back-reference.regexp, keyword.operator.quantifier.regexp, keyword.operator.or.regexp, keyword.operator.negation.regexp</string>
|
||||
<string>keyword.control.anchor.regexp, keyword.other.back-reference.regexp, keyword.operator.quantifier.regexp, keyword.operator.or.regexp, keyword.operator.negation.regexp</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
@ -55,34 +46,34 @@
|
|||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>constant.numeric.decimal.ts, meta.delimiter.decimal.period.ts, constant.numeric.hex.ts, constant.numeric.binary.ts, constant.numeric.octal.ts, constant.language.nan.ts, constant.language.infinity.ts</string>
|
||||
<string>constant.numeric, meta.delimiter.decimal.period.ts, constant.language.nan.ts, constant.language.infinity.ts</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>number</string>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>keyword.operator.ts, keyword.operator.arithmetic.ts, keyword.operator.assignment.ts, keyword.operator.comparison.ts</string>
|
||||
<string>keyword.operator, storage.type.function.arrow.ts</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>operator</string>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>meta.brace, meta.brace.square.ts, meta.brace.curly.ts, meta.brace.angle.ts, meta.brace.round.ts, meta.brace.square.ts, meta.brace.paren.ts</string>
|
||||
<string>meta.brace.angle.ts, meta.brace.round.ts, meta.brace.square.ts, punctuation.definition</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>punctuation</string>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>comment, comment.block.ts, comment.line.double-slash.ts, punctuation.definition.comment.ts</string>
|
||||
|
@ -129,20 +120,10 @@
|
|||
<string>class name</string>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>entity.name.type.ts</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>type parameter name</string>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>entity.name.function.ts, entity.name.function.tagged-template.ts, meta.template.expression.ts, variable.parameter.ts, meta.object.name.ts, meta.type.name.ts</string>
|
||||
<string>entity.name.function, entity.name.type, meta.template.expression.ts, variable, entity.other.inherited-class.ts</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
|
|
@ -26,7 +26,7 @@ repository:
|
|||
name: meta.var-single-variable.expr.tsx
|
||||
begin: \b([a-zA-Z_$][\w$]*)\s*(=?)
|
||||
beginCaptures:
|
||||
'1': { name: variable.tsx }
|
||||
'1': { name: variable.other.readwrite.tsx }
|
||||
end: (?=$|[;,])
|
||||
patterns:
|
||||
- include: '#ternary-expression'
|
||||
|
@ -61,16 +61,28 @@ repository:
|
|||
- include: '#import-operator'
|
||||
- include: '#expression-operator'
|
||||
- include: '#imply-operator'
|
||||
- include: '#relational-operator'
|
||||
- include: '#arithmetic-operator'
|
||||
- include: '#logic-operator'
|
||||
- include: '#assignment-operator'
|
||||
- include: '#operators'
|
||||
- include: '#type-primitive'
|
||||
- include: '#function-call'
|
||||
|
||||
control-statement:
|
||||
name: keyword.control.tsx
|
||||
match: (?<!\.)\b(break|catch|continue|debugger|declare|do|else|finally|for|if|return|switch|throw|try|while|with|super|case|default|yield)\b
|
||||
patterns:
|
||||
- name: keyword.control.trycatch.tsx
|
||||
match: (?<!\.)\b(catch|finally|throw|try)\b
|
||||
- name: keyword.control.loop.tsx
|
||||
match: (?<!\.)\b(break|continue|do|for|goto|while)\b
|
||||
- name: keyword.control.flow.tsx
|
||||
match: (?<!\.)\b(await|return|yield)\b
|
||||
- name: keyword.control.switch.tsx
|
||||
match: (?<!\.)\b(case|default|switch)\b
|
||||
- name: keyword.control.conditional.tsx
|
||||
match: (?<!\.)\b(else|if)\b
|
||||
- name: keyword.control.with.tsx
|
||||
match: (?<!\.)\b(with)\b
|
||||
- name: keyword.other.tsx
|
||||
match: (?<!\.)\b(debugger)\b
|
||||
- name: storage.modifier.tsx
|
||||
match: (?<!\.)\b(declare)\b
|
||||
|
||||
declaration:
|
||||
name: meta.declaration.tsx
|
||||
|
@ -84,13 +96,13 @@ repository:
|
|||
name: meta.type.declaration.tsx
|
||||
begin: \b(type)\b\s+([a-zA-Z_$][\w$]*)\s*
|
||||
beginCaptures:
|
||||
'1': { name: keyword.other.tsx }
|
||||
'2': { name: entity.name.class.tsx }
|
||||
'1': { name: storage.type.type.tsx }
|
||||
'2': { name: entity.name.type.tsx }
|
||||
end: (?=$|[,);>]|var|type|function|class|interface)
|
||||
patterns:
|
||||
- include: '#type-parameters'
|
||||
- include: '#type'
|
||||
- name: keyword.operator.comparison.tsx
|
||||
- name: keyword.operator.assignment.tsx
|
||||
match: '=\s*'
|
||||
|
||||
enum-declaration:
|
||||
|
@ -98,19 +110,20 @@ repository:
|
|||
match: (?:\b(const)\s+)?\b(enum)\s+([a-zA-Z_$][\w$]*)
|
||||
captures:
|
||||
'1': { name: storage.modifier.tsx}
|
||||
'2': { name: storage.type.tsx }
|
||||
'3': { name: entity.name.class.tsx }
|
||||
'2': { name: storage.type.enum.tsx }
|
||||
'3': { name: entity.name.type.class.tsx }
|
||||
|
||||
object-declaration:
|
||||
name: meta.declaration.object.tsx
|
||||
begin: '\b(?:(export)\s+)?\b(?:(abstract)\s+)?\b(?<!\.)(class|interface)\b'
|
||||
begin: '\b(?:(export)\s+)?\b(?:(abstract)\s+)?\b(?<!\.)(?:(class)|(interface))\b'
|
||||
beginCaptures:
|
||||
'1': { name: storage.type.tsx }
|
||||
'1': { name: keyword.control.export.tsx }
|
||||
'2': { name: storage.modifier.tsx }
|
||||
'3': { name: storage.type.tsx }
|
||||
'3': { name: storage.type.class.tsx }
|
||||
'4': { name: storage.type.interface.tsx }
|
||||
end: (?<=\})
|
||||
endCaptures:
|
||||
'1': { name: brace.curly.tsx }
|
||||
'1': { name: punctuation.definition.block.tsx }
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
- include: '#object-heritage' # Must be before object-name to consume the "extends" keyword.
|
||||
|
@ -128,10 +141,10 @@ repository:
|
|||
name: meta.object.heritage.tsx
|
||||
begin: '(?:\b(extends|implements)\b)'
|
||||
beginCaptures:
|
||||
'1': { name: keyword.other.tsx }
|
||||
'1': { name: storage.modifier.tsx }
|
||||
end: (?=\{)
|
||||
endCaptures:
|
||||
'1': { name: brace.curly.tsx }
|
||||
'1': { name: punctuation.definition.block.tsx }
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
- include: '#object-heritage'
|
||||
|
@ -142,16 +155,16 @@ repository:
|
|||
name: meta.object.heritage.parent.tsx
|
||||
match: '(?:\b([a-zA-Z_$][\w$]*)\b)'
|
||||
captures:
|
||||
'1': { name: support.type.tsx }
|
||||
'1': { name: entity.other.inherited-class.tsx }
|
||||
|
||||
object-body:
|
||||
name: meta.object.body.tsx
|
||||
begin: \{
|
||||
beginCaptures:
|
||||
'0': { name: meta.brace.curly.tsx }
|
||||
'0': { name: punctuation.definition.block.tsx }
|
||||
end: \}
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.curly.tsx }
|
||||
'0': { name: punctuation.definition.block.tsx }
|
||||
patterns:
|
||||
- include: "#string"
|
||||
- include: '#comment'
|
||||
|
@ -168,10 +181,10 @@ repository:
|
|||
name: meta.object.type.tsx
|
||||
begin: \{
|
||||
beginCaptures:
|
||||
'0': { name: meta.brace.curly.tsx }
|
||||
'0': { name: punctuation.definition.block.tsx }
|
||||
end: \}
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.curly.tsx }
|
||||
'0': { name: punctuation.definition.block.tsx }
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
- include: '#field-declaration'
|
||||
|
@ -183,8 +196,8 @@ repository:
|
|||
name: meta.field.declaration.tsx
|
||||
begin: (?<!\()\s*((?:\b[a-zA-Z_$][\w$]*)|(?:\'[^']*\')|(?:\"[^"]*\"))\s*(\?\s*)?(?=(=|:))
|
||||
beginCaptures:
|
||||
'1': { name: variable.tsx }
|
||||
'2': { name: keyword.others.tsx }
|
||||
'1': { name: variable.object.property.tsx }
|
||||
'2': { name: keyword.operator.optional.tsx }
|
||||
end: '(?=\}|;|,|$)|(?<=\})'
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
@ -195,12 +208,12 @@ repository:
|
|||
beginCaptures:
|
||||
'1': { name: storage.modifier.tsx } # captures keyword (abstract)
|
||||
'2': { name: storage.modifier.tsx } # captures keyword (public or private or protected)
|
||||
'3': { name: storage.modifier.tsx } # captures keyword (async)
|
||||
'3': { name: storage.modifier.async.tsx } # captures keyword (async)
|
||||
'4': { name: storage.type.property.tsx } # captures keyword (get|set)
|
||||
'5': { name: keyword.operator.tsx } # captures keyword (new)
|
||||
'5': { name: keyword.operator.new.tsx } # captures keyword (new)
|
||||
'6': { name: storage.type.tsx } # captures keyword (constructor)
|
||||
'7': { name: entity.name.function.tsx } # captures method name ([a-zA-Z_$][\.\w$]*)
|
||||
'8': { name: keyword.operator.tsx } # captures (\??)
|
||||
'8': { name: keyword.operator.optional.tsx } # captures (\??)
|
||||
end: '(?=\}|;|,)|(?<=\})'
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
|
@ -219,9 +232,9 @@ repository:
|
|||
'3': { name: storage.modifier.tsx } # captures keyword (async)
|
||||
'4': { name: storage.type.property.tsx } # captures keyword (get|set)
|
||||
'5': { name: keyword.operator.tsx } # captures keyword (new)
|
||||
'6': { name: storage.type.tsx } # captures keyword (constructor)
|
||||
'6': { name: entity.name.function.constructor.tsx } # captures keyword (constructor)
|
||||
'7': { name: entity.name.function.tsx } # captures method name ([a-zA-Z_$][\.\w$]*)
|
||||
'8': { name: keyword.operator.tsx } # captures (\??)
|
||||
'8': { name: keyword.operator.optional.tsx } # captures (\??)
|
||||
|
||||
indexer-declaration:
|
||||
name: meta.indexer.declaration.tsx
|
||||
|
@ -231,7 +244,7 @@ repository:
|
|||
end: (\])\s*(\?\s*)?|$
|
||||
endCaptures:
|
||||
'1': { name: meta.brace.square.tsx }
|
||||
'2': { name: keyword.others.tsx }
|
||||
'2': { name: keyword.operator.optional.tsx }
|
||||
patterns:
|
||||
- include: '#type-annotation'
|
||||
- include: '#indexer-parameter'
|
||||
|
@ -247,8 +260,8 @@ repository:
|
|||
name: meta.function.tsx
|
||||
begin: \b(?:(export)\s+)?(?:(async)\s+)?(function\b)(?:\s+([a-zA-Z_$][\w$]*))?\s*
|
||||
beginCaptures:
|
||||
'1': { name: storage.type.tsx }
|
||||
'2': { name: storage.modifier.tsx }
|
||||
'1': { name: keyword.control.export.tsx }
|
||||
'2': { name: storage.modifier.async.tsx }
|
||||
'3': { name: storage.type.function.tsx }
|
||||
'4': { name: entity.name.function.tsx }
|
||||
end: (?=;|\})|(?<=\})
|
||||
|
@ -264,7 +277,7 @@ repository:
|
|||
name: meta.function.overload.tsx
|
||||
match: \b(?:(export)\s+)?(function\b)(?:\s+([a-zA-Z_$][\w$]*))?\s*
|
||||
captures:
|
||||
'1': { name: storage.type.tsx }
|
||||
'1': { name: keyword.control.export.tsx }
|
||||
'2': { name: storage.type.function.tsx }
|
||||
'3': { name: entity.name.function.tsx }
|
||||
|
||||
|
@ -272,10 +285,10 @@ repository:
|
|||
name: meta.block.tsx
|
||||
begin: \{
|
||||
beginCaptures:
|
||||
'0': { name: meta.brace.curly.tsx }
|
||||
'0': { name: punctuation.definition.block.tsx }
|
||||
end: \}
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.curly.tsx }
|
||||
'0': { name: punctuation.definition.block.tsx }
|
||||
patterns:
|
||||
- include: '#object-member'
|
||||
- include: '#expression'
|
||||
|
@ -284,10 +297,10 @@ repository:
|
|||
name: meta.decl.block.tsx
|
||||
begin: \{
|
||||
beginCaptures:
|
||||
'0': { name: meta.brace.curly.tsx }
|
||||
'0': { name: punctuation.definition.block.tsx }
|
||||
end: \}
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.curly.tsx }
|
||||
'0': { name: punctuation.definition.block.tsx }
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
||||
|
@ -296,9 +309,9 @@ repository:
|
|||
match: '(?:\s*\b(public|private|protected)\b\s+)?(\.\.\.)?\s*([a-zA-Z_$][\w$]*)\s*(\??)'
|
||||
captures:
|
||||
'1': { name: storage.modifier.tsx }
|
||||
'2': { name: keyword.others.tsx }
|
||||
'2': { name: keyword.operator.spread.tsx }
|
||||
'3': { name: variable.parameter.tsx }
|
||||
'4': { name: keyword.others.tsx }
|
||||
'4': { name: keyword.operator.optional.tsx }
|
||||
|
||||
return-type:
|
||||
name: meta.return.type.tsx
|
||||
|
@ -333,10 +346,10 @@ repository:
|
|||
name: meta.function.type.parameter.tsx
|
||||
begin: \(
|
||||
beginCaptures:
|
||||
'0': { name: meta.brace.round.tsx }
|
||||
'0': { name: punctuation.definition.parameters.begin.tsx }
|
||||
end: \)
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.round.tsx }
|
||||
'0': { name: punctuation.definition.parameters.end.tsx }
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
- include: '#parameter-name'
|
||||
|
@ -345,9 +358,9 @@ repository:
|
|||
|
||||
type-primitive:
|
||||
name: meta.type.primitive.tsx
|
||||
match: '\b(string|number|boolean|symbol|any|void)\b'
|
||||
match: '\b(string|number|boolean|symbol|any|void|never)\b'
|
||||
captures:
|
||||
'1': { name: support.type.tsx }
|
||||
'1': { name: support.type.primitive.tsx }
|
||||
|
||||
# Parenthesis can contain either types and function parameters
|
||||
# (number | string) or (param: number, param2: string)
|
||||
|
@ -355,17 +368,20 @@ repository:
|
|||
# (number | (param: number, param2: string) => void)
|
||||
type-paren-or-function-type-parameters:
|
||||
name: meta.type.paren.cover.tsx
|
||||
begin: '(?:\b(new)\b)?\s*\('
|
||||
begin: '(?:\b(new)\b)?\s*(\()'
|
||||
beginCaptures:
|
||||
'1': { name: keyword.control.tsx }
|
||||
'1': { name: keyword.control.new.tsx }
|
||||
'2': { name: meta.brace.round.tsx }
|
||||
end: '\)'
|
||||
endCaptures:
|
||||
'0': { name: meta.brace.round.tsx }
|
||||
patterns:
|
||||
- include: '#comment'
|
||||
- include: '#type'
|
||||
- include: '#function-type-parameters'
|
||||
|
||||
await-modifier:
|
||||
name: storage.modifier.tsx
|
||||
name: storage.modifier.await.tsx
|
||||
match: '\bawait\b'
|
||||
|
||||
type-operator:
|
||||
|
@ -376,7 +392,7 @@ repository:
|
|||
name: meta.type.function.return.tsx
|
||||
begin: '=>'
|
||||
beginCaptures:
|
||||
'0': { name: keyword.operator.tsx }
|
||||
'0': { name: storage.type.function.arrow.tsx }
|
||||
end: (?=\s*[,\)\{=;>]|//|$)
|
||||
patterns:
|
||||
- include: '#type'
|
||||
|
@ -404,12 +420,12 @@ repository:
|
|||
begin: '([a-zA-Z_$][\w$]*)?(<)'
|
||||
beginCaptures:
|
||||
'1': { name: entity.name.type.tsx }
|
||||
'2': { name: meta.brace.angle.tsx }
|
||||
'2': { name: punctuation.definition.typeparameters.begin.tsx }
|
||||
end: '(?=$)|(>)'
|
||||
endCaptures:
|
||||
'2': { name: meta.brace.angle.tsx }
|
||||
'2': { name: punctuation.definition.typeparameters.end.tsx }
|
||||
patterns:
|
||||
- name: keyword.other.tsx
|
||||
- name: storage.modifier.tsx
|
||||
match: '\b(extends)\b'
|
||||
- include: '#comment'
|
||||
- include: '#type'
|
||||
|
@ -417,7 +433,7 @@ repository:
|
|||
variable-initializer:
|
||||
begin: (=)
|
||||
beginCaptures:
|
||||
'1': { name: keyword.operator.comparison.tsx }
|
||||
'1': { name: keyword.operator.assignment.tsx }
|
||||
end: (?=$|[,);=])
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
@ -441,10 +457,7 @@ repository:
|
|||
- include: '#import-operator'
|
||||
- include: '#expression-operator'
|
||||
- include: '#imply-operator'
|
||||
- include: '#relational-operator'
|
||||
- include: '#arithmetic-operator'
|
||||
- include: '#logic-operator'
|
||||
- include: '#assignment-operator'
|
||||
- include: '#operators'
|
||||
- include: '#storage-keyword'
|
||||
- include: '#type-primitive'
|
||||
- include: '#function-call'
|
||||
|
@ -455,7 +468,7 @@ repository:
|
|||
name: switch-expression.expr.tsx
|
||||
begin: \b(switch)\b\s*\(
|
||||
beginCaptures:
|
||||
'1': { name: keyword.control.tsx }
|
||||
'1': { name: keyword.control.switch.tsx }
|
||||
end: \)
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
@ -463,6 +476,8 @@ repository:
|
|||
switch-block:
|
||||
name: switch-block.expr.tsx
|
||||
begin: '{'
|
||||
beginCaptures:
|
||||
'0': { name: punctuation.definition.block.tsx }
|
||||
end: (?=\})
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
@ -471,7 +486,7 @@ repository:
|
|||
name: case-clause.expr.tsx
|
||||
begin: '(?<!\.)\b(case|default(?=:))\b'
|
||||
beginCaptures:
|
||||
'1': { name: keyword.control.tsx }
|
||||
'1': { name: keyword.control.switch.tsx }
|
||||
end: ':'
|
||||
patterns:
|
||||
- include: '#expression-type'
|
||||
|
@ -480,6 +495,8 @@ repository:
|
|||
name: switch-statement.expr.tsx
|
||||
begin: (?=\bswitch\b\s*\()
|
||||
end: '}'
|
||||
endCaptures:
|
||||
'0': {name: punctuation.definition.block.tsx}
|
||||
patterns:
|
||||
- include: '#switch-expression'
|
||||
- include: '#switch-block'
|
||||
|
@ -487,10 +504,12 @@ repository:
|
|||
|
||||
for-in-simple:
|
||||
name: forin.expr.tsx
|
||||
match: (?<=\()\s*\b(var|let|const)\s+([a-zA-Z_$][\w$]*)\s+(in|of)\b
|
||||
match: (?<=\()\s*\b(var|let|const)\s+([a-zA-Z_$][\w$]*)\s+(?:(in)|(of))\b
|
||||
captures:
|
||||
'1': { name: storage.type.tsx }
|
||||
'3': { name: keyword.others.tsx }
|
||||
'2': { name: variable.other.readwrite.tsx }
|
||||
'3': { name: keyword.operator.in.tsx }
|
||||
'4': { name: keyword.operator.of.tsx }
|
||||
|
||||
function-call:
|
||||
name: functioncall.expr.tsx
|
||||
|
@ -503,7 +522,7 @@ repository:
|
|||
name: new.expr.tsx
|
||||
begin: '\b(new)\b'
|
||||
beginCaptures:
|
||||
'1': { name: keyword.others.tsx }
|
||||
'1': { name: keyword.operator.new.tsx }
|
||||
# new-expr ends just before any type or call arguments. Type arguments will be picked up by #cast.
|
||||
end: '(?=[(;]|$)'
|
||||
patterns:
|
||||
|
@ -518,33 +537,59 @@ repository:
|
|||
- include: '#expression'
|
||||
|
||||
expression-operator:
|
||||
name: keyword.others.tsx
|
||||
match: \b(delete|in|instanceof|new|typeof|as|is|of)\b
|
||||
patterns:
|
||||
- name: keyword.operator.delete.tsx
|
||||
match: \bdelete\b
|
||||
- name: keyword.operator.in.tsx
|
||||
match: \bin\b
|
||||
- name: keyword.operator.of.tsx
|
||||
match: \bof\b
|
||||
- name: keyword.operator.instanceof.tsx
|
||||
match: \binstanceof\b
|
||||
- name: keyword.operator.new.tsx
|
||||
match: \bnew\b
|
||||
- name: keyword.operator.typeof.tsx
|
||||
match: \btypeof\b
|
||||
- name: keyword.operator.void.tsx
|
||||
match: \bvoid\b
|
||||
- name: keyword.control.as.tsx
|
||||
match: \bas\b
|
||||
- name: keyword.operator.is.tsx
|
||||
match: \bis\b
|
||||
|
||||
imply-operator:
|
||||
name: keyword.operator.tsx
|
||||
name: storage.type.function.arrow.tsx
|
||||
match: =>
|
||||
|
||||
import-operator:
|
||||
name: keyword.control.import.include.tsx
|
||||
match: \b(import|from)\b
|
||||
patterns:
|
||||
- name: keyword.control.import.tsx
|
||||
match: \bimport\b
|
||||
- name: keyword.control.from.tsx
|
||||
match: \bfrom\b
|
||||
|
||||
arithmetic-operator:
|
||||
name: keyword.operator.arithmetic.tsx
|
||||
match: \*|/|\-\-|\-|\+\+|\+|%
|
||||
|
||||
relational-operator:
|
||||
|
||||
name: keyword.operator.comparison.tsx
|
||||
match: ===|!==|==|!=|<=|>=|<>|=|<|>
|
||||
|
||||
assignment-operator:
|
||||
name: keyword.operator.assignment.tsx
|
||||
match: <<=|>>>=|>>=|\*=|(?<!\()/=|%=|\+=|\-=|&=|\^=
|
||||
|
||||
logic-operator:
|
||||
name: keyword.operator.arithmetic.tsx
|
||||
match: \!|&&|&|~|\^|\|\||\|
|
||||
operators:
|
||||
patterns:
|
||||
- name: keyword.operator.assignment.compound.tsx
|
||||
match: \*=|(?<!\()/=|%=|\+=|\-=
|
||||
- name: keyword.operator.assignment.compound.bitwise.tsx
|
||||
match: \&=|\^=|<<=|>>=|>>>=|\|=
|
||||
- name: keyword.operator.comparison.tsx
|
||||
match: ===|!==|==|!=
|
||||
- name: keyword.operator.relational.tsx
|
||||
match: <=|>=|<>|=|<|>
|
||||
- name: keyword.operator.logical.tsx
|
||||
match: \!|&&|\|\|
|
||||
- name: keyword.operator.bitwise.tsx
|
||||
match: \&|~|\^|\|
|
||||
- name: keyword.operator.assignment.tsx
|
||||
match: \=
|
||||
- name: keyword.operator.decrement.tsx
|
||||
match: --
|
||||
- name: keyword.operator.increment.tsx
|
||||
match: \+\+
|
||||
- name: keyword.operator.arithmetic.tsx
|
||||
match: '%|\*|/|-|\+'
|
||||
|
||||
storage-keyword:
|
||||
name: storage.type.tsx
|
||||
|
@ -553,10 +598,10 @@ repository:
|
|||
paren-expression:
|
||||
begin: \(
|
||||
beginCaptures:
|
||||
'0': {name: meta.brace.paren.tsx }
|
||||
'0': {name: meta.brace.round.tsx }
|
||||
end: \)
|
||||
endCaptures:
|
||||
'0': {name: meta.brace.paren.tsx }
|
||||
'0': {name: meta.brace.round.tsx }
|
||||
patterns:
|
||||
- include: '#expression'
|
||||
|
||||
|
@ -741,6 +786,7 @@ repository:
|
|||
- include: '#numericConstant-literal'
|
||||
- include: '#array-literal'
|
||||
- include: '#this-literal'
|
||||
- include: '#super-literal'
|
||||
|
||||
array-literal:
|
||||
name: meta.array.literal.tsx
|
||||
|
@ -794,9 +840,13 @@ repository:
|
|||
match: \bnull\b
|
||||
|
||||
this-literal:
|
||||
name: constant.language.this.tsx
|
||||
name: variable.language.this.tsx
|
||||
match: \bthis\b
|
||||
|
||||
super-literal:
|
||||
name: variable.language.super.tsx
|
||||
match: \bsuper\b
|
||||
|
||||
undefined-literal:
|
||||
name: constant.language.undefined.tsx
|
||||
match: \bundefined\b
|
||||
|
@ -813,7 +863,7 @@ repository:
|
|||
match: \b(public|protected|private)\b
|
||||
|
||||
static-modifier:
|
||||
name: keyword.other.tsx
|
||||
name: storage.modifier.tsx
|
||||
match: \b(static)\b
|
||||
|
||||
property-accessor:
|
||||
|
@ -891,7 +941,7 @@ repository:
|
|||
match: \S+
|
||||
|
||||
jsx-tag-without-attributes:
|
||||
name: tag.without-attributes.tsx
|
||||
name: meta.tag.without-attributes.tsx
|
||||
begin: (<)([_$a-zA-Z][-$\w.]*(?<!\.|-))(>)
|
||||
end: (</)([_$a-zA-Z][-$\w.]*(?<!\.|-))(>)
|
||||
beginCaptures:
|
||||
|
@ -906,7 +956,7 @@ repository:
|
|||
- include: '#jsx-children'
|
||||
|
||||
jsx-tag-open:
|
||||
name: tag.open.tsx
|
||||
name: meta.tag.open.tsx
|
||||
begin: >-
|
||||
(?x)
|
||||
(<)
|
||||
|
@ -924,7 +974,7 @@ repository:
|
|||
- include: '#jsx-tag-attributes-illegal'
|
||||
|
||||
jsx-tag-close:
|
||||
name: tag.close.tsx
|
||||
name: meta.tag.close.tsx
|
||||
begin: (</)([_$a-zA-Z][-$\w.]*(?<!\.|-))
|
||||
end: (>)
|
||||
beginCaptures:
|
||||
|
|
|
@ -24,13 +24,6 @@
|
|||
<key>name</key>
|
||||
<string>storage.modifier.tsx</string>
|
||||
</dict>
|
||||
<key>arithmetic-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\*|/|\-\-|\-|\+\+|\+|%</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.arithmetic.tsx</string>
|
||||
</dict>
|
||||
<key>array-literal</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
|
@ -63,19 +56,12 @@
|
|||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>assignment-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string><<=|>>>=|>>=|\*=|(?<!\()/=|%=|\+=|\-=|&=|\^=</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.assignment.tsx</string>
|
||||
</dict>
|
||||
<key>await-modifier</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bawait\b</string>
|
||||
<key>name</key>
|
||||
<string>storage.modifier.tsx</string>
|
||||
<string>storage.modifier.await.tsx</string>
|
||||
</dict>
|
||||
<key>block</key>
|
||||
<dict>
|
||||
|
@ -86,7 +72,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.tsx</string>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -96,7 +82,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.tsx</string>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -140,7 +126,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.control.tsx</string>
|
||||
<string>keyword.control.switch.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -235,10 +221,57 @@
|
|||
</dict>
|
||||
<key>control-statement</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(break|catch|continue|debugger|declare|do|else|finally|for|if|return|switch|throw|try|while|with|super|case|default|yield)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.tsx</string>
|
||||
<key>patterns</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(catch|finally|throw|try)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.trycatch.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(break|continue|do|for|goto|while)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.loop.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(await|return|yield)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.flow.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(case|default|switch)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.switch.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(else|if)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.conditional.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(with)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.with.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(debugger)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.other.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(?<!\.)\b(declare)\b</string>
|
||||
<key>name</key>
|
||||
<string>storage.modifier.tsx</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>decl-block</key>
|
||||
<dict>
|
||||
|
@ -249,7 +282,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.tsx</string>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -259,7 +292,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.tsx</string>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -347,12 +380,12 @@
|
|||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.tsx</string>
|
||||
<string>storage.type.enum.tsx</string>
|
||||
</dict>
|
||||
<key>3</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>entity.name.class.tsx</string>
|
||||
<string>entity.name.type.class.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
|
@ -432,19 +465,7 @@
|
|||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#relational-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#arithmetic-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#logic-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#assignment-operator</string>
|
||||
<string>#operators</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
|
@ -470,10 +491,63 @@
|
|||
</dict>
|
||||
<key>expression-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\b(delete|in|instanceof|new|typeof|as|is|of)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.others.tsx</string>
|
||||
<key>patterns</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bdelete\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.delete.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bin\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.in.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bof\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.of.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\binstanceof\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.instanceof.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bnew\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.new.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\btypeof\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.typeof.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bvoid\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.void.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bas\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.as.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bis\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.is.tsx</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>expression-type</key>
|
||||
<dict>
|
||||
|
@ -523,19 +597,7 @@
|
|||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#relational-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#arithmetic-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#logic-operator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#assignment-operator</string>
|
||||
<string>#operators</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
|
@ -556,12 +618,12 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>variable.tsx</string>
|
||||
<string>variable.object.property.tsx</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.tsx</string>
|
||||
<string>keyword.operator.optional.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -585,14 +647,24 @@
|
|||
<key>name</key>
|
||||
<string>storage.type.tsx</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>variable.other.readwrite.tsx</string>
|
||||
</dict>
|
||||
<key>3</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.tsx</string>
|
||||
<string>keyword.operator.in.tsx</string>
|
||||
</dict>
|
||||
<key>4</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.of.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
<string>(?<=\()\s*\b(var|let|const)\s+([a-zA-Z_$][\w$]*)\s+(in|of)\b</string>
|
||||
<string>(?<=\()\s*\b(var|let|const)\s+([a-zA-Z_$][\w$]*)\s+(?:(in)|(of))\b</string>
|
||||
<key>name</key>
|
||||
<string>forin.expr.tsx</string>
|
||||
</dict>
|
||||
|
@ -625,12 +697,12 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.tsx</string>
|
||||
<string>keyword.control.export.tsx</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.modifier.tsx</string>
|
||||
<string>storage.modifier.async.tsx</string>
|
||||
</dict>
|
||||
<key>3</key>
|
||||
<dict>
|
||||
|
@ -682,7 +754,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.tsx</string>
|
||||
<string>keyword.control.export.tsx</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
|
@ -709,7 +781,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.round.tsx</string>
|
||||
<string>punctuation.definition.parameters.begin.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -719,7 +791,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.round.tsx</string>
|
||||
<string>punctuation.definition.parameters.end.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -749,14 +821,25 @@
|
|||
<key>match</key>
|
||||
<string>=></string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.tsx</string>
|
||||
<string>storage.type.function.arrow.tsx</string>
|
||||
</dict>
|
||||
<key>import-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\b(import|from)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.import.include.tsx</string>
|
||||
<key>patterns</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bimport\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.import.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bfrom\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.control.from.tsx</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>indexer-declaration</key>
|
||||
<dict>
|
||||
|
@ -782,7 +865,7 @@
|
|||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.tsx</string>
|
||||
<string>keyword.operator.optional.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -1100,7 +1183,7 @@
|
|||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
<string>tag.close.tsx</string>
|
||||
<string>meta.tag.close.tsx</string>
|
||||
<key>patterns</key>
|
||||
<array>
|
||||
<dict>
|
||||
|
@ -1147,7 +1230,7 @@
|
|||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
<string>tag.open.tsx</string>
|
||||
<string>meta.tag.open.tsx</string>
|
||||
<key>patterns</key>
|
||||
<array>
|
||||
<dict>
|
||||
|
@ -1207,7 +1290,7 @@
|
|||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
<string>tag.without-attributes.tsx</string>
|
||||
<string>meta.tag.without-attributes.tsx</string>
|
||||
<key>patterns</key>
|
||||
<array>
|
||||
<dict>
|
||||
|
@ -1250,15 +1333,12 @@
|
|||
<key>include</key>
|
||||
<string>#this-literal</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
<string>#super-literal</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>logic-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\!|&&|&|~|\^|\|\||\|</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.arithmetic.tsx</string>
|
||||
</dict>
|
||||
<key>method-declaration</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
|
@ -1278,7 +1358,7 @@
|
|||
<key>3</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.modifier.tsx</string>
|
||||
<string>storage.modifier.async.tsx</string>
|
||||
</dict>
|
||||
<key>4</key>
|
||||
<dict>
|
||||
|
@ -1288,7 +1368,7 @@
|
|||
<key>5</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.tsx</string>
|
||||
<string>keyword.operator.new.tsx</string>
|
||||
</dict>
|
||||
<key>6</key>
|
||||
<dict>
|
||||
|
@ -1303,7 +1383,7 @@
|
|||
<key>8</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.tsx</string>
|
||||
<string>keyword.operator.optional.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1370,7 +1450,7 @@
|
|||
<key>6</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.tsx</string>
|
||||
<string>entity.name.function.constructor.tsx</string>
|
||||
</dict>
|
||||
<key>7</key>
|
||||
<dict>
|
||||
|
@ -1380,7 +1460,7 @@
|
|||
<key>8</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.tsx</string>
|
||||
<string>keyword.operator.optional.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
|
@ -1397,7 +1477,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.tsx</string>
|
||||
<string>keyword.operator.new.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1526,7 +1606,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.tsx</string>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1536,7 +1616,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.tsx</string>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -1588,13 +1668,13 @@
|
|||
<key>object-declaration</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
<string>\b(?:(export)\s+)?\b(?:(abstract)\s+)?\b(?<!\.)(class|interface)\b</string>
|
||||
<string>\b(?:(export)\s+)?\b(?:(abstract)\s+)?\b(?<!\.)(?:(class)|(interface))\b</string>
|
||||
<key>beginCaptures</key>
|
||||
<dict>
|
||||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.tsx</string>
|
||||
<string>keyword.control.export.tsx</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
|
@ -1604,7 +1684,12 @@
|
|||
<key>3</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.tsx</string>
|
||||
<string>storage.type.class.tsx</string>
|
||||
</dict>
|
||||
<key>4</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>storage.type.interface.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1614,7 +1699,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>brace.curly.tsx</string>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -1652,7 +1737,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.other.tsx</string>
|
||||
<string>storage.modifier.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1662,7 +1747,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>brace.curly.tsx</string>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -1694,7 +1779,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>support.type.tsx</string>
|
||||
<string>entity.other.inherited-class.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
|
@ -1733,6 +1818,72 @@
|
|||
<key>name</key>
|
||||
<string>meta.object.name.tsx</string>
|
||||
</dict>
|
||||
<key>operators</key>
|
||||
<dict>
|
||||
<key>patterns</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\*=|(?<!\()/=|%=|\+=|\-=</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.assignment.compound.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\&=|\^=|<<=|>>=|>>>=|\|=</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.assignment.compound.bitwise.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>===|!==|==|!=</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.comparison.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string><=|>=|<>|=|<|></string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.relational.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\!|&&|\|\|</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.logical.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\&|~|\^|\|</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.bitwise.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\=</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.assignment.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>--</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.decrement.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\+\+</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.increment.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>%|\*|/|-|\+</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.arithmetic.tsx</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>parameter-name</key>
|
||||
<dict>
|
||||
<key>captures</key>
|
||||
|
@ -1745,7 +1896,7 @@
|
|||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.tsx</string>
|
||||
<string>keyword.operator.spread.tsx</string>
|
||||
</dict>
|
||||
<key>3</key>
|
||||
<dict>
|
||||
|
@ -1755,7 +1906,7 @@
|
|||
<key>4</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.others.tsx</string>
|
||||
<string>keyword.operator.optional.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
|
@ -1772,7 +1923,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.paren.tsx</string>
|
||||
<string>meta.brace.round.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -1782,7 +1933,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.paren.tsx</string>
|
||||
<string>meta.brace.round.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>patterns</key>
|
||||
|
@ -2132,13 +2283,6 @@
|
|||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>relational-operator</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>===|!==|==|!=|<=|>=|<>|=|<|></string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.comparison.tsx</string>
|
||||
</dict>
|
||||
<key>return-type</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
|
@ -2160,7 +2304,7 @@
|
|||
<key>match</key>
|
||||
<string>\b(static)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.other.tsx</string>
|
||||
<string>storage.modifier.tsx</string>
|
||||
</dict>
|
||||
<key>storage-keyword</key>
|
||||
<dict>
|
||||
|
@ -2192,10 +2336,25 @@
|
|||
<key>name</key>
|
||||
<string>constant.character.escape.tsx</string>
|
||||
</dict>
|
||||
<key>super-literal</key>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>\bsuper\b</string>
|
||||
<key>name</key>
|
||||
<string>variable.language.super.tsx</string>
|
||||
</dict>
|
||||
<key>switch-block</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
<string>{</string>
|
||||
<key>beginCaptures</key>
|
||||
<dict>
|
||||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
<string>(?=\})</string>
|
||||
<key>name</key>
|
||||
|
@ -2217,7 +2376,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.control.tsx</string>
|
||||
<string>keyword.control.switch.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -2238,6 +2397,14 @@
|
|||
<string>(?=\bswitch\b\s*\()</string>
|
||||
<key>end</key>
|
||||
<string>}</string>
|
||||
<key>endCaptures</key>
|
||||
<dict>
|
||||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
<string>switch-statement.expr.tsx</string>
|
||||
<key>patterns</key>
|
||||
|
@ -2362,7 +2529,7 @@
|
|||
<key>match</key>
|
||||
<string>\bthis\b</string>
|
||||
<key>name</key>
|
||||
<string>constant.language.this.tsx</string>
|
||||
<string>variable.language.this.tsx</string>
|
||||
</dict>
|
||||
<key>type</key>
|
||||
<dict>
|
||||
|
@ -2441,12 +2608,12 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.other.tsx</string>
|
||||
<string>storage.type.type.tsx</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>entity.name.class.tsx</string>
|
||||
<string>entity.name.type.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -2467,7 +2634,7 @@
|
|||
<key>match</key>
|
||||
<string>=\s*</string>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.comparison.tsx</string>
|
||||
<string>keyword.operator.assignment.tsx</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
|
@ -2480,7 +2647,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.tsx</string>
|
||||
<string>storage.type.function.arrow.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -2519,7 +2686,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.tsx</string>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -2529,7 +2696,7 @@
|
|||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.curly.tsx</string>
|
||||
<string>punctuation.definition.block.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -2579,7 +2746,7 @@
|
|||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.angle.tsx</string>
|
||||
<string>punctuation.definition.typeparameters.begin.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -2589,7 +2756,7 @@
|
|||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.angle.tsx</string>
|
||||
<string>punctuation.definition.typeparameters.end.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
|
@ -2600,7 +2767,7 @@
|
|||
<key>match</key>
|
||||
<string>\b(extends)\b</string>
|
||||
<key>name</key>
|
||||
<string>keyword.other.tsx</string>
|
||||
<string>storage.modifier.tsx</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>include</key>
|
||||
|
@ -2615,17 +2782,30 @@
|
|||
<key>type-paren-or-function-type-parameters</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
<string>(?:\b(new)\b)?\s*\(</string>
|
||||
<string>(?:\b(new)\b)?\s*(\()</string>
|
||||
<key>beginCaptures</key>
|
||||
<dict>
|
||||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.control.tsx</string>
|
||||
<string>keyword.control.new.tsx</string>
|
||||
</dict>
|
||||
<key>2</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.round.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
<string>\)</string>
|
||||
<key>endCaptures</key>
|
||||
<dict>
|
||||
<key>0</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>meta.brace.round.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>name</key>
|
||||
<string>meta.type.paren.cover.tsx</string>
|
||||
<key>patterns</key>
|
||||
|
@ -2651,11 +2831,11 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>support.type.tsx</string>
|
||||
<string>support.type.primitive.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>match</key>
|
||||
<string>\b(string|number|boolean|symbol|any|void)\b</string>
|
||||
<string>\b(string|number|boolean|symbol|any|void|never)\b</string>
|
||||
<key>name</key>
|
||||
<string>meta.type.primitive.tsx</string>
|
||||
</dict>
|
||||
|
@ -2739,7 +2919,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>variable.tsx</string>
|
||||
<string>variable.other.readwrite.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
@ -2779,7 +2959,7 @@
|
|||
<key>1</key>
|
||||
<dict>
|
||||
<key>name</key>
|
||||
<string>keyword.operator.comparison.tsx</string>
|
||||
<string>keyword.operator.assignment.tsx</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>end</key>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<array>
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>storage.modifier.tsx, storage.type.tsx, storage.type.function.tsx, storage.type.property.tsx</string>
|
||||
<string>storage.modifier, storage.type, keyword.control, keyword.others.tsx, keyword.operator.new.tsx, </string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
@ -17,16 +17,7 @@
|
|||
</dict>
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>keyword, keyword.control.tsx, keyword.others.tsx, keyword.control.import.include.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>keyword</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>support.type.tsx, constant.language.boolean.true.tsx, constant.language.boolean.false.tsx, constant.language.null.tsx, constant.language.this.tsx</string>
|
||||
<string>support.type, constant.language, variable.language</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
@ -36,26 +27,26 @@
|
|||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>string.quoted.double.tsx, string.quoted.single.tsx, punctuation.definition.string.begin.tsx, punctuation.definition.string.end.tsx, string.template.tsx, punctuation.definition.template-expression.begin.tsx, punctuation.definition.template-expression.end.tsx, constant.character.escape.tsx</string>
|
||||
<string>string, punctuation.definition.string, punctuation.definition.template-expression, constant.character.escape.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>string</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>string.regex.tsx, keyword.control.anchor.regexp, keyword.other.back-reference.regexp, keyword.operator.quantifier.regexp, keyword.operator.or.regexp, keyword.operator.negation.regexp</string>
|
||||
<string>keyword.control.anchor.regexp, keyword.other.back-reference.regexp, keyword.operator.quantifier.regexp, keyword.operator.or.regexp, keyword.operator.negation.regexp</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>string</string>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>constant.numeric.decimal.tsx, meta.delimiter.decimal.period.tsx, constant.numeric.hex.tsx, constant.numeric.binary.tsx, constant.numeric.octal.tsx, constant.language.nan.tsx, constant.language.infinity.tsx</string>
|
||||
<string>constant.numeric, meta.delimiter.decimal.period.tsx, constant.language.nan.tsx, constant.language.infinity.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
@ -65,7 +56,7 @@
|
|||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>keyword.operator.tsx, keyword.operator.arithmetic.tsx, keyword.operator.assignment.tsx, keyword.operator.comparison.tsx</string>
|
||||
<string>keyword.operator, storage.type.function.arrow.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
@ -75,32 +66,14 @@
|
|||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>meta.brace, meta.brace.square.tsx, meta.brace.curly.tsx, meta.brace.angle.tsx, meta.brace.round.tsx, meta.brace.square.tsx, meta.brace.paren.tsx</string>
|
||||
<string>meta.brace.angle.tsx, meta.brace.round.tsx, meta.brace.square.tsx, punctuation.definition</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>punctuation</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>punctuation.definition.brace.curly.start.tsx, punctuation.definition.brace.curly.end.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>punctuation</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>punctuation.definition.tag.begin.tsx, punctuation.definition.tag.end.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>punctuation</string>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>comment, comment.block.tsx, comment.line.double-slash.tsx, punctuation.definition.comment.tsx</string>
|
||||
|
@ -148,16 +121,6 @@
|
|||
</dict>
|
||||
</dict>
|
||||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>entity.name.type.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>type parameter name</string>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>entity.name.tag.tsx</string>
|
||||
|
@ -170,7 +133,7 @@
|
|||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>entity.other.attribute-name.tsx, invalid.illegal.attribute.tsx</string>
|
||||
<string>entity.other.attribute-name.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
@ -178,28 +141,19 @@
|
|||
</dict>
|
||||
</dict>
|
||||
|
||||
<dict>
|
||||
<!--<dict>
|
||||
<key>scope</key>
|
||||
<string>punctuation.definition.string.begin.tsx, punctuation.definition.string.end.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>xml literal - attribute quotes</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>string.quoted.double.tsx, string.quoted.single.tsx</string>
|
||||
<string>meta.tag.open.tsx string.quoted, meta.tag.open.tsx string.quoted punctuation.definition.string, meta.tag.open.tsx string.quoted constant.character.entity.tsx, meta.tag.open.tsx string.quoted constant.character.entity.tsx punctuation.definition.entity.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>xml literal - attribute value</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>-->
|
||||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>constant.character.entity.tsx, punctuation.definition.entity.tsx, invalid.illegal.bad-ampersand.tsx</string>
|
||||
<string>meta.jsx.children.tsx, constant.character.entity.tsx, punctuation.definition.entity.tsx, invalid.illegal.bad-ampersand.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
@ -209,7 +163,17 @@
|
|||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>entity.name.function.tsx, entity.name.function.tagged-template.tsx, meta.template.expression.tsx, variable.parameter.tsx, meta.object.name.tsx, meta.type.name.tsx</string>
|
||||
<string>invalid.illegal.attribute.tsx, meta.brace.curly.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
<string>identifier</string>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
<dict>
|
||||
<key>scope</key>
|
||||
<string>entity.name.function, entity.name.type, meta.template.expression.tsx, variable, entity.other.inherited-class.tsx</string>
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>vsclassificationtype</key>
|
||||
|
|
|
@ -24,7 +24,7 @@ cow.makeSound();
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^
|
||||
|
@ -32,7 +32,7 @@ cow.makeSound();
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> public age: number;
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -41,11 +41,11 @@ cow.makeSound();
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
> public yearsLeft() { return 20 - this.age; }
|
||||
|
@ -58,17 +58,17 @@ cow.makeSound();
|
|||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^
|
||||
|
@ -80,11 +80,11 @@ cow.makeSound();
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> abstract makeSound(): string;
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -95,26 +95,26 @@ cow.makeSound();
|
|||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>class Cow extends Animal {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^
|
||||
|
@ -122,32 +122,32 @@ cow.makeSound();
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> makeSound() { return "Moo"; }
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
|
@ -159,16 +159,16 @@ cow.makeSound();
|
|||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>class Cat extends Animal {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^
|
||||
|
@ -176,32 +176,32 @@ cow.makeSound();
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> makeSound() { return "Meow"; }
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
|
@ -213,10 +213,10 @@ cow.makeSound();
|
|||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -226,29 +226,29 @@ cow.makeSound();
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts keyword.others.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts keyword.operator.new.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts
|
||||
^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts
|
||||
>cow.makeSound();
|
||||
^^^^^^^^^^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts
|
|
@ -38,13 +38,13 @@ function f(x: string | ((value: string) => number)) {
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts punctuation.definition.block.ts
|
||||
> setTransform: <(domNode: HTMLElement, desiredValue: string) => void>null,
|
||||
^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts
|
||||
|
@ -55,7 +55,7 @@ function f(x: string | ((value: string) => number)) {
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.brace.angle.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^^
|
||||
|
@ -69,17 +69,17 @@ function f(x: string | ((value: string) => number)) {
|
|||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.function.return.ts
|
||||
^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.brace.angle.ts
|
||||
^^^^
|
||||
|
@ -94,30 +94,30 @@ function f(x: string | ((value: string) => number)) {
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.brace.round.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts keyword.operator.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts punctuation.definition.block.ts
|
||||
> if (domNode.style.display !== desiredValue) {
|
||||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts keyword.control.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts keyword.control.conditional.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.brace.round.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts
|
||||
^^^
|
||||
|
@ -125,31 +125,31 @@ function f(x: string | ((value: string) => number)) {
|
|||
^^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
> domNode.style.display = desiredValue;
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.block.ts keyword.operator.comparison.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.block.ts keyword.operator.relational.ts
|
||||
^^^^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.block.ts
|
||||
> }
|
||||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
> }
|
||||
^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts meta.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -161,7 +161,7 @@ function f(x: string | ((value: string) => number)) {
|
|||
^
|
||||
source.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -169,50 +169,52 @@ function f(x: string | ((value: string) => number)) {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts keyword.operator.type.ts
|
||||
^^
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> if (typeof x === "string") {
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.conditional.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.others.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.operator.typeof.ts
|
||||
^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^^^
|
||||
|
@ -226,16 +228,16 @@ function f(x: string | ((value: string) => number)) {
|
|||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts string.quoted.double.ts punctuation.definition.string.end.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
> return +x
|
||||
^^^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts keyword.control.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts keyword.control.flow.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts
|
||||
^
|
||||
|
@ -246,16 +248,16 @@ function f(x: string | ((value: string) => number)) {
|
|||
^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
> else {
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.conditional.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
> let f = <(v: string) => number> x
|
||||
^^^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts
|
||||
|
@ -264,7 +266,7 @@ function f(x: string | ((value: string) => number)) {
|
|||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -272,23 +274,23 @@ function f(x: string | ((value: string) => number)) {
|
|||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.brace.angle.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.function.return.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.brace.angle.ts
|
||||
^^
|
||||
|
@ -297,11 +299,11 @@ function f(x: string | ((value: string) => number)) {
|
|||
^^^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts keyword.control.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts keyword.control.flow.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts string.quoted.double.ts punctuation.definition.string.begin.ts
|
||||
^^^^^^^^^^^
|
||||
|
@ -309,15 +311,15 @@ function f(x: string | ((value: string) => number)) {
|
|||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts string.quoted.double.ts punctuation.definition.string.end.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.brace.round.ts
|
||||
> }
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
|
|
@ -31,7 +31,7 @@ function f(x: string | ((value: string) => number)) {
|
|||
^
|
||||
[4, 19]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.brace.angle.ts
|
||||
^
|
||||
[4, 20]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts
|
||||
[4, 20]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^^^^^
|
||||
[4, 21]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^^^^^^^^^^^
|
||||
|
@ -39,11 +39,11 @@ function f(x: string | ((value: string) => number)) {
|
|||
^^^^^^^^^^^^
|
||||
[4, 43]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^^^^^^
|
||||
[4, 57]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.ts
|
||||
[4, 57]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
[4, 65]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.function.return.ts keyword.operator.ts
|
||||
[4, 65]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^^^^
|
||||
[4, 68]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
[4, 68]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts cast.expr.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^^
|
||||
[4, 73]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts constant.language.null.ts
|
||||
> setDisplay: (domNode: HTMLElement, desiredValue: string) => {
|
||||
|
@ -62,15 +62,15 @@ function f(x: string | ((value: string) => number)) {
|
|||
^
|
||||
[17, 17]: source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.brace.angle.ts
|
||||
^
|
||||
[17, 18]: source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts
|
||||
[17, 18]: source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
[17, 19]: source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^^^^^^
|
||||
[17, 22]: source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.ts
|
||||
[17, 22]: source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
[17, 30]: source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.function.return.ts keyword.operator.ts
|
||||
[17, 30]: source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^^^^^^
|
||||
[17, 33]: source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
[17, 33]: source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
[17, 39]: source.ts meta.function.ts meta.decl.block.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts cast.expr.ts meta.brace.angle.ts
|
||||
^^
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -55,72 +55,72 @@ abstract class C {
|
|||
>/* Function overload tests */
|
||||
>export function testFunctionOverload(p: number): new() => any
|
||||
^^^^^^
|
||||
[2, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[2, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
[2, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
>export function testFunctionOverload(p: string)
|
||||
^^^^^^
|
||||
[3, 1]: source.ts meta.function.ts meta.function.overload.ts storage.type.ts
|
||||
[3, 1]: source.ts meta.function.ts meta.function.overload.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
[3, 17]: source.ts meta.function.ts meta.function.overload.ts entity.name.function.ts
|
||||
>export function testFunctionOverload(p: string [])
|
||||
^^^^^^
|
||||
[4, 1]: source.ts meta.function.ts meta.function.overload.ts storage.type.ts
|
||||
[4, 1]: source.ts meta.function.ts meta.function.overload.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
[4, 17]: source.ts meta.function.ts meta.function.overload.ts entity.name.function.ts
|
||||
>export function testFunctionOverload(p: {})
|
||||
^^^^^^
|
||||
[5, 1]: source.ts meta.function.ts meta.function.overload.ts storage.type.ts
|
||||
[5, 1]: source.ts meta.function.ts meta.function.overload.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
[5, 17]: source.ts meta.function.ts meta.function.overload.ts entity.name.function.ts
|
||||
>export function testFunctionOverload(p: {a: A, b:B} | string [])
|
||||
^^^^^^
|
||||
[6, 1]: source.ts meta.function.ts meta.function.overload.ts storage.type.ts
|
||||
[6, 1]: source.ts meta.function.ts meta.function.overload.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
[6, 17]: source.ts meta.function.ts meta.function.overload.ts entity.name.function.ts
|
||||
>export function testFunctionOverload(p: any): new() => any {
|
||||
^^^^^^
|
||||
[7, 1]: source.ts meta.function.ts meta.function.overload.ts storage.type.ts
|
||||
[7, 1]: source.ts meta.function.ts meta.function.overload.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
[7, 17]: source.ts meta.function.ts meta.function.overload.ts entity.name.function.ts
|
||||
> throw new Error("")
|
||||
^^^^^
|
||||
[8, 5]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[8, 5]: source.ts meta.function.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
>}
|
||||
>
|
||||
>export function testFunctionOverloadWithSemicolon(p: number): new () => any;
|
||||
^^^^^^
|
||||
[11, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[11, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[11, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
>export function testFunctionOverloadWithSemicolon(p: string);
|
||||
^^^^^^
|
||||
[12, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[12, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[12, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
>export function testFunctionOverloadWithSemicolon(p: string[]);
|
||||
^^^^^^
|
||||
[13, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[13, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[13, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
>export function testFunctionOverloadWithSemicolon(p: {});
|
||||
^^^^^^
|
||||
[14, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[14, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[14, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
>export function testFunctionOverloadWithSemicolon(p: { a: A, b: B } | string[]);
|
||||
^^^^^^
|
||||
[15, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[15, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[15, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
>export function testFunctionOverloadWithSemicolon(p: any): new () => any {
|
||||
^^^^^^
|
||||
[16, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[16, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[16, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
> throw new Error("")
|
||||
^^^^^
|
||||
[17, 5]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[17, 5]: source.ts meta.function.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
>}
|
||||
>
|
||||
>
|
||||
|
@ -158,7 +158,7 @@ abstract class C {
|
|||
[28, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.method.overload.declaration.ts entity.name.function.ts
|
||||
> throw new Error("")
|
||||
^^^^^
|
||||
[29, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[29, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
> }
|
||||
>
|
||||
> public testMethodOverloadWithSemicolon(p: number): new () => any;
|
||||
|
@ -193,7 +193,7 @@ abstract class C {
|
|||
[37, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
> throw new Error("")
|
||||
^^^^^
|
||||
[38, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[38, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
> }
|
||||
>}
|
||||
>
|
||||
|
|
|
@ -48,7 +48,7 @@ class testClass {
|
|||
^^^^^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
> m1: string,
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts
|
||||
|
@ -59,7 +59,7 @@ class testClass {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts
|
||||
> m2: {},
|
||||
|
@ -72,9 +72,9 @@ class testClass {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts
|
||||
> m3: any [],
|
||||
|
@ -87,7 +87,7 @@ class testClass {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
|
@ -106,9 +106,9 @@ class testClass {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
|
@ -116,11 +116,11 @@ class testClass {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts
|
||||
> m5: () => void,
|
||||
|
@ -130,18 +130,20 @@ class testClass {
|
|||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts
|
||||
> m6: (x:(string), y:[number, string]) => number,
|
||||
|
@ -151,18 +153,20 @@ class testClass {
|
|||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
|
@ -172,23 +176,23 @@ class testClass {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts
|
||||
> m7: Array<number>,
|
||||
|
@ -203,9 +207,9 @@ class testClass {
|
|||
^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts
|
||||
^^
|
||||
|
@ -222,11 +226,11 @@ class testClass {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^^
|
||||
|
@ -241,9 +245,9 @@ class testClass {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
|
@ -251,11 +255,11 @@ class testClass {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
|
@ -265,11 +269,11 @@ class testClass {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^^^
|
||||
|
@ -281,22 +285,24 @@ class testClass {
|
|||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
|
@ -304,39 +310,39 @@ class testClass {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> return m6.length;
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>class testClass {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^^^
|
||||
|
@ -344,7 +350,7 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> /* method param type tests */
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -364,7 +370,7 @@ class testClass {
|
|||
^^^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
> m1: string,
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts
|
||||
|
@ -375,7 +381,7 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts
|
||||
> m2: {},
|
||||
|
@ -388,9 +394,9 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts
|
||||
> m3: any [],
|
||||
|
@ -403,7 +409,7 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
|
@ -422,9 +428,9 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
|
@ -432,11 +438,11 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts
|
||||
> m5: () => void,
|
||||
|
@ -446,18 +452,20 @@ class testClass {
|
|||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts
|
||||
> m6: (x:(string), y:[number, string]) => number,
|
||||
|
@ -467,18 +475,20 @@ class testClass {
|
|||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
|
@ -488,23 +498,23 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts
|
||||
> m7: Array<number>,
|
||||
|
@ -519,9 +529,9 @@ class testClass {
|
|||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.parameters.ts
|
||||
^^
|
||||
|
@ -538,11 +548,11 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^^
|
||||
|
@ -557,9 +567,9 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
|
@ -567,11 +577,11 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
|
@ -581,11 +591,11 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^^^
|
||||
|
@ -597,22 +607,24 @@ class testClass {
|
|||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
|
@ -620,35 +632,35 @@ class testClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.tuple.ts meta.brace.square.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> return m6.length;
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
> }
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
|
@ -67,7 +67,7 @@ class testClass {
|
|||
[12, 5]: source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
> return m6.length;
|
||||
^^^^^^
|
||||
[13, 5]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[13, 5]: source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
>}
|
||||
>
|
||||
>class testClass {
|
||||
|
@ -105,6 +105,6 @@ class testClass {
|
|||
[28, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
> return m6.length;
|
||||
^^^^^^
|
||||
[29, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[29, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
> }
|
||||
>}
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -36,95 +36,95 @@ class TestClass {
|
|||
>/* Function return type tests */
|
||||
>export function testFunctionReturnType1(): string [] { return [""] }
|
||||
^^^^^^
|
||||
[2, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[2, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[2, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[2, 56]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[2, 56]: source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
>export function testFunctionReturnType2(): {} { return {} }
|
||||
^^^^^^
|
||||
[3, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[3, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[3, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[3, 49]: source.ts meta.block.ts keyword.control.ts
|
||||
[3, 49]: source.ts meta.block.ts keyword.control.flow.ts
|
||||
>export function testFunctionReturnType3(): {a: A, b: B} { return {a: {m: "" }, b: {m1: "" }} }
|
||||
^^^^^^
|
||||
[4, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[4, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[4, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[4, 59]: source.ts meta.block.ts keyword.control.ts
|
||||
[4, 59]: source.ts meta.block.ts keyword.control.flow.ts
|
||||
>export function testFunctionReturnType4(): [number, number] { return [1, 1] }
|
||||
^^^^^^
|
||||
[5, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[5, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[5, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[5, 63]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[5, 63]: source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
>export function testFunctionReturnType5(): Array<A> { return [{ m: "" }] }
|
||||
^^^^^^
|
||||
[6, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[6, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[6, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[6, 55]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[6, 55]: source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
>export function testFunctionReturnType6(): new () => number { throw new Error(""); }
|
||||
^^^^^^
|
||||
[7, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[7, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[7, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^
|
||||
[7, 63]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[7, 63]: source.ts meta.function.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
>export function testFunctionReturnType7(): (() => number) { throw new Error(""); }
|
||||
^^^^^^
|
||||
[8, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[8, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[8, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^
|
||||
[8, 61]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[8, 61]: source.ts meta.function.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
>export function testFunctionReturnType8(): (() => number) [] { throw new Error(""); }
|
||||
^^^^^^
|
||||
[9, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[9, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[9, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^
|
||||
[9, 64]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[9, 64]: source.ts meta.function.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
>export function testFunctionReturnType9(): (() => number) | (() => string) { throw new Error(""); }
|
||||
^^^^^^
|
||||
[10, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[10, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[10, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^
|
||||
[10, 78]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[10, 78]: source.ts meta.function.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
>export function testFunctionReturnType10(): {a: A, b: B} [] { return [{a: {m: "" }, b: {m1: "" }}] }
|
||||
^^^^^^
|
||||
[11, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[11, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[11, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[11, 63]: source.ts meta.block.ts keyword.control.ts
|
||||
[11, 63]: source.ts meta.block.ts keyword.control.flow.ts
|
||||
>export function testFunctionReturnType11(): number | string { return 1 }
|
||||
^^^^^^
|
||||
[12, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[12, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[12, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[12, 63]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[12, 63]: source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
>export function testFunctionReturnType12(): number | string [] { return }
|
||||
^^^^^^
|
||||
[13, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[13, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[13, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[13, 66]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[13, 66]: source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
>export function testFunctionReturnType13(): [number, number] | string [] { return [""] }
|
||||
^^^^^^
|
||||
[14, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[14, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[14, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[14, 76]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[14, 76]: source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
>
|
||||
>class TestClass {
|
||||
> /* method return type tests */
|
||||
|
@ -134,89 +134,89 @@ class TestClass {
|
|||
^^^^^^^^^^^^^^^^^^^^^
|
||||
[18, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[18, 49]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[18, 49]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
> public testMethodReturnType2(): {} { return {} }
|
||||
^^^^^^
|
||||
[19, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
[19, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[19, 42]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[19, 42]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
> public testMethodReturnType3(): {a: A, b: B} { return {a: {m: "" }, b: {m1: "" }} }
|
||||
^^^^^^
|
||||
[20, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
[20, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[20, 52]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[20, 52]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
> public testMethodReturnType4(): [number, number] { return [1, 1] }
|
||||
^^^^^^
|
||||
[21, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
[21, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[21, 56]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[21, 56]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
> public testMethodReturnType5(): Array<A> { return [{ m: "" }] }
|
||||
^^^^^^
|
||||
[22, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
[22, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[22, 48]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[22, 48]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
> public testMethodReturnType6(): new () => number { throw new Error(""); }
|
||||
^^^^^^
|
||||
[23, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
[23, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^
|
||||
[23, 56]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[23, 56]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
> public testMethodReturnType7(): (() => number) { throw new Error(""); }
|
||||
^^^^^^
|
||||
[24, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
[24, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^
|
||||
[24, 54]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[24, 54]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
> public testMethodReturnType8(): (() => number) [] { throw new Error(""); }
|
||||
^^^^^^
|
||||
[25, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
[25, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^
|
||||
[25, 57]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[25, 57]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
> public testMethodReturnType9(): (() => number) | (() => string) { throw new Error(""); }
|
||||
^^^^^^
|
||||
[26, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
[26, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^
|
||||
[26, 71]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[26, 71]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.trycatch.ts
|
||||
> public testMethodReturnType10(): {a: A, b: B} [] { return [{a: {m: "" }, b: {m1: "" }}] }
|
||||
^^^^^^
|
||||
[27, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^
|
||||
[27, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[27, 56]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[27, 56]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
> public testMethodReturnType11(): number | string { return 1 }
|
||||
^^^^^^
|
||||
[28, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^
|
||||
[28, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[28, 56]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[28, 56]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
> public testMethodReturnType12(): number | string [] { return }
|
||||
^^^^^^
|
||||
[29, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^
|
||||
[29, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[29, 59]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[29, 59]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
> public testMethodReturnType13(): [number, number] | string [] { return [""] }
|
||||
^^^^^^
|
||||
[30, 5]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.modifier.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^
|
||||
[30, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[30, 69]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
[30, 69]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
>}
|
|
@ -29,7 +29,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -44,7 +44,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -57,7 +57,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -80,7 +80,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -93,7 +93,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -110,7 +110,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -131,7 +131,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -148,7 +148,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -161,7 +161,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -174,7 +174,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -191,7 +191,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -204,7 +204,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -225,7 +225,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -242,7 +242,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -259,7 +259,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -276,7 +276,7 @@ let i = ^^1, j = ^^1e3
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -286,7 +286,7 @@ let i = ^^1, j = ^^1e3
|
|||
^^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
|
|
@ -39,7 +39,7 @@ var ^^debArch = ^^arch ^^=== ^^'x64' ^^? ^^'amd64' ^^: ^^'i386';
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -70,7 +70,7 @@ var ^^debArch = ^^arch ^^=== ^^'x64' ^^? ^^'amd64' ^^: ^^'i386';
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -109,7 +109,7 @@ var ^^debArch = ^^arch ^^=== ^^'x64' ^^? ^^'amd64' ^^: ^^'i386';
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -165,7 +165,7 @@ var ^^debArch = ^^arch ^^=== ^^'x64' ^^? ^^'amd64' ^^: ^^'i386';
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^
|
||||
|
@ -175,7 +175,7 @@ var ^^debArch = ^^arch ^^=== ^^'x64' ^^? ^^'amd64' ^^: ^^'i386';
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^
|
||||
|
@ -189,7 +189,7 @@ var ^^debArch = ^^arch ^^=== ^^'x64' ^^? ^^'amd64' ^^: ^^'i386';
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts string.template.ts punctuation.definition.string.template.end.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -209,7 +209,7 @@ var ^^debArch = ^^arch ^^=== ^^'x64' ^^? ^^'amd64' ^^: ^^'i386';
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^^^^
|
||||
|
|
|
@ -55,19 +55,19 @@ var ^^debArch = ^^arch ^^=== ^^'x64' ^^? ^^'amd64' ^^: ^^'i386';
|
|||
>
|
||||
>var newVar = a ? (b == `hello`) : true;
|
||||
^^^^^^
|
||||
[10, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[10, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^^
|
||||
[10, 14]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
[10, 16]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
[10, 18]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
[10, 18]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^^^^
|
||||
[10, 35]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts constant.language.boolean.true.ts
|
||||
>
|
||||
>var debArch = arch === 'x64' ? 'amd64' : 'i386';
|
||||
^^^^^^^
|
||||
[12, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[12, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^^^^^
|
||||
[12, 15]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^
|
||||
|
|
|
@ -17,7 +17,7 @@ original file
|
|||
|
||||
>export function fn(s: string): new() => View
|
||||
^^^^^^
|
||||
source.ts meta.function.ts storage.type.ts
|
||||
source.ts meta.function.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.function.ts
|
||||
^^^^^^^^
|
||||
|
@ -27,7 +27,7 @@ original file
|
|||
^^
|
||||
source.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -35,30 +35,30 @@ original file
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts
|
||||
^^^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts keyword.control.ts
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts keyword.control.new.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.function.return.ts
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.function.return.ts meta.type.name.ts
|
||||
>export function fn(s: string)
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.overload.ts storage.type.ts
|
||||
source.ts meta.function.ts meta.function.overload.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.overload.ts
|
||||
^^^^^^^^
|
||||
|
@ -68,7 +68,7 @@ original file
|
|||
^^
|
||||
source.ts meta.function.ts meta.function.overload.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -76,12 +76,12 @@ original file
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
>export function fn(n: number)
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.overload.ts storage.type.ts
|
||||
source.ts meta.function.ts meta.function.overload.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.overload.ts
|
||||
^^^^^^^^
|
||||
|
@ -91,7 +91,7 @@ original file
|
|||
^^
|
||||
source.ts meta.function.ts meta.function.overload.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -99,12 +99,12 @@ original file
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
>export function fn(s: any) {
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.overload.ts storage.type.ts
|
||||
source.ts meta.function.ts meta.function.overload.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.overload.ts
|
||||
^^^^^^^^
|
||||
|
@ -114,7 +114,7 @@ original file
|
|||
^^
|
||||
source.ts meta.function.ts meta.function.overload.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -122,18 +122,18 @@ original file
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> return "";
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
|
@ -144,13 +144,13 @@ original file
|
|||
source.ts meta.function.ts meta.decl.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>export function fn(s: string): new () => View;
|
||||
^^^^^^
|
||||
source.ts meta.function.ts storage.type.ts
|
||||
source.ts meta.function.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.function.ts
|
||||
^^^^^^^^
|
||||
|
@ -160,7 +160,7 @@ original file
|
|||
^^
|
||||
source.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -168,23 +168,25 @@ original file
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts
|
||||
^^^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts keyword.control.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts keyword.control.new.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.function.return.ts
|
||||
^^^^
|
||||
|
@ -193,7 +195,7 @@ original file
|
|||
source.ts
|
||||
>export function fn(s: string);
|
||||
^^^^^^
|
||||
source.ts meta.function.ts storage.type.ts
|
||||
source.ts meta.function.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.function.ts
|
||||
^^^^^^^^
|
||||
|
@ -203,7 +205,7 @@ original file
|
|||
^^
|
||||
source.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -211,14 +213,14 @@ original file
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^^
|
||||
source.ts
|
||||
>export function fn(n: number);
|
||||
^^^^^^
|
||||
source.ts meta.function.ts storage.type.ts
|
||||
source.ts meta.function.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.function.ts
|
||||
^^^^^^^^
|
||||
|
@ -228,7 +230,7 @@ original file
|
|||
^^
|
||||
source.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -236,14 +238,14 @@ original file
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^^
|
||||
source.ts
|
||||
>export function fn(s: any) {
|
||||
^^^^^^
|
||||
source.ts meta.function.ts storage.type.ts
|
||||
source.ts meta.function.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.function.ts
|
||||
^^^^^^^^
|
||||
|
@ -253,7 +255,7 @@ original file
|
|||
^^
|
||||
source.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -261,18 +263,18 @@ original file
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> return "";
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
|
@ -283,4 +285,4 @@ original file
|
|||
source.ts meta.function.ts meta.decl.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
|
@ -17,60 +17,60 @@ original file
|
|||
|
||||
>export function fn(s: string): new() => View
|
||||
^^^^^^
|
||||
[1, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[1, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^
|
||||
[1, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[1, 23]: source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
[1, 23]: source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^
|
||||
[1, 32]: source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts keyword.control.ts
|
||||
[1, 32]: source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts keyword.control.new.ts
|
||||
^^^^
|
||||
[1, 41]: source.ts meta.function.ts meta.return.type.ts meta.type.function.return.ts meta.type.name.ts
|
||||
>export function fn(s: string)
|
||||
^^^^^^
|
||||
[2, 1]: source.ts meta.function.ts meta.function.overload.ts storage.type.ts
|
||||
[2, 1]: source.ts meta.function.ts meta.function.overload.ts keyword.control.export.ts
|
||||
^^
|
||||
[2, 17]: source.ts meta.function.ts meta.function.overload.ts entity.name.function.ts
|
||||
>export function fn(n: number)
|
||||
^^^^^^
|
||||
[3, 1]: source.ts meta.function.ts meta.function.overload.ts storage.type.ts
|
||||
[3, 1]: source.ts meta.function.ts meta.function.overload.ts keyword.control.export.ts
|
||||
^^
|
||||
[3, 17]: source.ts meta.function.ts meta.function.overload.ts entity.name.function.ts
|
||||
>export function fn(s: any) {
|
||||
^^^^^^
|
||||
[4, 1]: source.ts meta.function.ts meta.function.overload.ts storage.type.ts
|
||||
[4, 1]: source.ts meta.function.ts meta.function.overload.ts keyword.control.export.ts
|
||||
^^
|
||||
[4, 17]: source.ts meta.function.ts meta.function.overload.ts entity.name.function.ts
|
||||
> return "";
|
||||
^^^^^^
|
||||
[5, 5]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[5, 5]: source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
>}
|
||||
>
|
||||
>export function fn(s: string): new () => View;
|
||||
^^^^^^
|
||||
[8, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[8, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^
|
||||
[8, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
^^^
|
||||
[8, 32]: source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts keyword.control.ts
|
||||
[8, 32]: source.ts meta.function.ts meta.return.type.ts meta.type.paren.cover.ts keyword.control.new.ts
|
||||
^^^^
|
||||
[8, 42]: source.ts meta.function.ts meta.return.type.ts meta.type.function.return.ts meta.type.name.ts
|
||||
>export function fn(s: string);
|
||||
^^^^^^
|
||||
[9, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[9, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^
|
||||
[9, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
>export function fn(n: number);
|
||||
^^^^^^
|
||||
[10, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[10, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^
|
||||
[10, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
>export function fn(s: any) {
|
||||
^^^^^^
|
||||
[11, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[11, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^
|
||||
[11, 17]: source.ts meta.function.ts entity.name.function.ts
|
||||
> return "";
|
||||
^^^^^^
|
||||
[12, 5]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[12, 5]: source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
>}
|
|
@ -10,7 +10,7 @@ class Test {
|
|||
|
||||
>class Test {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^
|
||||
|
@ -18,14 +18,14 @@ class Test {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> mmm(p1: string | {}, p2: string)
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -33,7 +33,7 @@ class Test {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
|
@ -41,9 +41,9 @@ class Test {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts
|
||||
^
|
||||
|
@ -55,16 +55,16 @@ class Test {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
> {
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
|
@ -72,7 +72,7 @@ class Test {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
|
@ -15,13 +15,13 @@ class Test {
|
|||
^^
|
||||
[2, 6]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^^^^^^
|
||||
[2, 10]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
[2, 10]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
[2, 19]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts meta.brace.curly.ts
|
||||
[2, 19]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
^^
|
||||
[2, 23]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^^^^^^
|
||||
[2, 27]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
[2, 27]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
> {
|
||||
>
|
||||
^^^^^^^^^
|
||||
|
|
|
@ -24,7 +24,7 @@ class Thing<^^T, ^^U> {
|
|||
|
||||
>class Thing {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^
|
||||
|
@ -32,14 +32,14 @@ class Thing<^^T, ^^U> {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> constructor(public content: string){
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts storage.modifier.ts
|
||||
^
|
||||
|
@ -51,11 +51,11 @@ class Thing<^^T, ^^U> {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> var prop = Q.defer<boolean>();
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
|
@ -64,7 +64,7 @@ class Thing<^^T, ^^U> {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^
|
||||
|
@ -72,51 +72,51 @@ class Thing<^^T, ^^U> {
|
|||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
> this.store = new Data();
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts new.expr.ts keyword.others.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts new.expr.ts keyword.operator.new.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts new.expr.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts new.expr.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
> gaze(path.join(this.content, "**/*.json"), (err, watch) => {
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
|
@ -126,28 +126,28 @@ class Thing<^^T, ^^U> {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts string.quoted.double.ts punctuation.definition.string.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
> process.stuout.write(`Watching for changes in:`);
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts string.template.ts punctuation.definition.string.template.begin.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
@ -155,38 +155,38 @@ class Thing<^^T, ^^U> {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts string.template.ts punctuation.definition.string.template.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts
|
||||
> })
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
> };
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>class Thing<T, U> {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.name.ts entity.name.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.declaration.object.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.type.parameters.ts meta.type.name.ts
|
||||
^^
|
||||
|
@ -198,14 +198,14 @@ class Thing<^^T, ^^U> {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> constructor(public content: string){
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts storage.modifier.ts
|
||||
^
|
||||
|
@ -217,11 +217,11 @@ class Thing<^^T, ^^U> {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> var prop = Q.defer<boolean>();
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
|
@ -230,7 +230,7 @@ class Thing<^^T, ^^U> {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^
|
||||
|
@ -238,51 +238,51 @@ class Thing<^^T, ^^U> {
|
|||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
> this.store = new Data();
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts new.expr.ts keyword.others.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts new.expr.ts keyword.operator.new.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts new.expr.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts new.expr.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
> gaze(path.join(this.content, "**/*.json"), (err, watch) => {
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
|
@ -292,28 +292,28 @@ class Thing<^^T, ^^U> {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts string.quoted.double.ts punctuation.definition.string.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
> process.stuout.write(`Watching for changes in:`);
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts string.template.ts punctuation.definition.string.template.begin.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
@ -321,26 +321,26 @@ class Thing<^^T, ^^U> {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts string.template.ts punctuation.definition.string.template.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts
|
||||
> })
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
> };
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
|
@ -31,17 +31,17 @@ class Thing<^^T, ^^U> {
|
|||
^^^^^^^
|
||||
[2, 24]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^^^^^^
|
||||
[2, 33]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
[2, 33]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
> var prop = Q.defer<boolean>();
|
||||
^^^^
|
||||
[3, 13]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[3, 13]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^^^^^^
|
||||
[3, 28]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[3, 28]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
[3, 37]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
[3, 37]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
> this.store = new Data();
|
||||
^^^^
|
||||
[4, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
[4, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^^
|
||||
[4, 26]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts new.expr.ts meta.type.name.ts
|
||||
> gaze(path.join(this.content, "**/*.json"), (err, watch) => {
|
||||
|
@ -50,14 +50,14 @@ class Thing<^^T, ^^U> {
|
|||
^^^^^^^^^
|
||||
[5, 39]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts string.quoted.double.ts
|
||||
^
|
||||
[5, 49]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
[5, 49]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
> process.stuout.write(`Watching for changes in:`);
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[6, 13]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[6, 35]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts string.template.ts
|
||||
^
|
||||
[6, 60]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.paren.ts
|
||||
[6, 60]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.round.ts
|
||||
> })
|
||||
> };
|
||||
>}
|
||||
|
@ -75,17 +75,17 @@ class Thing<^^T, ^^U> {
|
|||
^^^^^^^
|
||||
[12, 24]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^^^^^^
|
||||
[12, 33]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
[12, 33]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
> var prop = Q.defer<boolean>();
|
||||
^^^^
|
||||
[13, 13]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[13, 13]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^^^^^^
|
||||
[13, 28]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[13, 28]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
[13, 37]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
[13, 37]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
> this.store = new Data();
|
||||
^^^^
|
||||
[14, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
[14, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^^
|
||||
[14, 26]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts new.expr.ts meta.type.name.ts
|
||||
> gaze(path.join(this.content, "**/*.json"), (err, watch) => {
|
||||
|
@ -94,14 +94,14 @@ class Thing<^^T, ^^U> {
|
|||
^^^^^^^^^
|
||||
[15, 39]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts string.quoted.double.ts
|
||||
^
|
||||
[15, 49]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
[15, 49]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
> process.stuout.write(`Watching for changes in:`);
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[16, 13]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[16, 35]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts string.template.ts
|
||||
^
|
||||
[16, 60]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.paren.ts
|
||||
[16, 60]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.round.ts
|
||||
> })
|
||||
> };
|
||||
>}
|
||||
|
|
|
@ -16,7 +16,7 @@ original file
|
|||
source.ts
|
||||
>declare module 'goog:goog.i18n.NumberFormatSymbols_en_TT' {
|
||||
^^^^^^^
|
||||
source.ts keyword.control.ts
|
||||
source.ts storage.modifier.ts
|
||||
^
|
||||
source.ts
|
||||
^^^^^^
|
||||
|
@ -32,18 +32,18 @@ original file
|
|||
^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.block.ts
|
||||
> import alias = lool.clutz.goog.i18n.NumberFormatSymbols_en_TT;
|
||||
^^
|
||||
source.ts meta.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.block.ts keyword.control.import.include.ts
|
||||
source.ts meta.block.ts keyword.control.import.ts
|
||||
^^^^^^^
|
||||
source.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.block.ts keyword.operator.comparison.ts
|
||||
source.ts meta.block.ts keyword.operator.relational.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.block.ts
|
||||
> export default alias;
|
||||
|
@ -54,9 +54,9 @@ original file
|
|||
^
|
||||
source.ts meta.block.ts
|
||||
^^^^^^^
|
||||
source.ts meta.block.ts keyword.control.ts
|
||||
source.ts meta.block.ts keyword.control.switch.ts
|
||||
^^^^^^^^^
|
||||
source.ts meta.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
|
@ -14,14 +14,14 @@ original file
|
|||
>
|
||||
>declare module 'goog:goog.i18n.NumberFormatSymbols_en_TT' {
|
||||
^^^^^^^
|
||||
[3, 1]: source.ts keyword.control.ts
|
||||
[3, 1]: source.ts storage.modifier.ts
|
||||
^^^^^^
|
||||
[3, 9]: source.ts storage.type.ts
|
||||
^
|
||||
[3, 16]: source.ts string.quoted.single.ts punctuation.definition.string.begin.ts
|
||||
> import alias = lool.clutz.goog.i18n.NumberFormatSymbols_en_TT;
|
||||
^^^^^^
|
||||
[4, 3]: source.ts meta.block.ts keyword.control.import.include.ts
|
||||
[4, 3]: source.ts meta.block.ts keyword.control.import.ts
|
||||
^^^^^^^
|
||||
[4, 10]: source.ts meta.block.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
@ -30,9 +30,9 @@ original file
|
|||
^^^^^^
|
||||
[5, 3]: source.ts meta.block.ts storage.type.ts
|
||||
^^^^^^^
|
||||
[5, 10]: source.ts meta.block.ts keyword.control.ts
|
||||
[5, 10]: source.ts meta.block.ts keyword.control.switch.ts
|
||||
^^^^^^^^^
|
||||
[5, 18]: source.ts meta.block.ts
|
||||
>}
|
||||
^
|
||||
[6, 1]: source.ts meta.block.ts meta.brace.curly.ts
|
||||
[6, 1]: source.ts meta.block.ts punctuation.definition.block.ts
|
|
@ -18,29 +18,29 @@ class MyClass {
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts keyword.others.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts keyword.operator.new.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts string.quoted.single.ts punctuation.definition.string.begin.ts
|
||||
^^^^
|
||||
|
@ -48,7 +48,7 @@ class MyClass {
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts string.quoted.single.ts punctuation.definition.string.end.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts
|
||||
>var someVar = makeThing<number, string>('data');
|
||||
|
@ -57,7 +57,7 @@ class MyClass {
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -65,17 +65,17 @@ class MyClass {
|
|||
^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts string.quoted.single.ts punctuation.definition.string.begin.ts
|
||||
^^^^
|
||||
|
@ -83,7 +83,7 @@ class MyClass {
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts string.quoted.single.ts punctuation.definition.string.end.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts
|
||||
>
|
||||
|
@ -91,7 +91,7 @@ class MyClass {
|
|||
source.ts
|
||||
>class MyClass {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^
|
||||
|
@ -99,40 +99,40 @@ class MyClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> static someProp = new Thing<number, string>('data');
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts keyword.others.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts keyword.operator.new.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts string.quoted.single.ts punctuation.definition.string.begin.ts
|
||||
^^^^
|
||||
|
@ -140,38 +140,38 @@ class MyClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts string.quoted.single.ts punctuation.definition.string.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
> static someProp = makeThing<number, string>('data');
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts string.quoted.single.ts punctuation.definition.string.begin.ts
|
||||
^^^^
|
||||
|
@ -179,7 +179,7 @@ class MyClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts string.quoted.single.ts punctuation.definition.string.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
>
|
||||
|
@ -189,31 +189,31 @@ class MyClass {
|
|||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts keyword.others.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts keyword.operator.new.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts string.quoted.single.ts punctuation.definition.string.begin.ts
|
||||
^^^^
|
||||
|
@ -221,34 +221,34 @@ class MyClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts string.quoted.single.ts punctuation.definition.string.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
> someProp = makeThing<number, string>('data');
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts string.quoted.single.ts punctuation.definition.string.begin.ts
|
||||
^^^^
|
||||
|
@ -256,9 +256,9 @@ class MyClass {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts string.quoted.single.ts punctuation.definition.string.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.paren.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
|
@ -14,61 +14,61 @@ class MyClass {
|
|||
|
||||
>var someVar = new Thing<number, string>('data');
|
||||
^^^
|
||||
[1, 15]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts keyword.others.ts
|
||||
[1, 15]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts keyword.operator.new.ts
|
||||
^^^^^
|
||||
[1, 19]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^^^^^^
|
||||
[1, 25]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[1, 25]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^^^^
|
||||
[1, 33]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[1, 33]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^^
|
||||
[1, 42]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts string.quoted.single.ts
|
||||
^
|
||||
[1, 47]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
[1, 47]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
>var someVar = makeThing<number, string>('data');
|
||||
^^^^^^^^^
|
||||
[2, 15]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^^^^^^
|
||||
[2, 25]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[2, 25]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^^^^
|
||||
[2, 33]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[2, 33]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^^
|
||||
[2, 42]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts string.quoted.single.ts
|
||||
^
|
||||
[2, 47]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
[2, 47]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
>
|
||||
>class MyClass {
|
||||
> static someProp = new Thing<number, string>('data');
|
||||
^^^^^^^^
|
||||
[5, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
[5, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^^^
|
||||
[5, 27]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^^^^^^
|
||||
[5, 33]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[5, 33]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^^^^
|
||||
[5, 41]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[5, 41]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
> static someProp = makeThing<number, string>('data');
|
||||
^^^^^^^^
|
||||
[6, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
[6, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^^^^^^^
|
||||
[6, 23]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^^^^^^
|
||||
[6, 33]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[6, 33]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^^^^
|
||||
[6, 41]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[6, 41]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>
|
||||
> someProp = new Thing<number, string>('data');
|
||||
^^^^^
|
||||
[8, 20]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^^^^^^
|
||||
[8, 26]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[8, 26]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^^^^
|
||||
[8, 34]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[8, 34]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts new.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
> someProp = makeThing<number, string>('data');
|
||||
^^^^^^^^^
|
||||
[9, 16]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^^^^^^
|
||||
[9, 26]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[9, 26]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^^^^
|
||||
[9, 34]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[9, 34]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>}
|
|
@ -9,17 +9,17 @@ for (^^let a = 1; a ^^< 10; a++) {
|
|||
|
||||
>for (let a = 1; a < 10; a++) {
|
||||
^^^
|
||||
source.ts keyword.control.ts
|
||||
source.ts keyword.control.loop.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
^^^
|
||||
source.ts storage.type.ts
|
||||
^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts keyword.operator.comparison.ts
|
||||
source.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
|
@ -27,7 +27,7 @@ for (^^let a = 1; a ^^< 10; a++) {
|
|||
^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts keyword.operator.comparison.ts
|
||||
source.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts
|
||||
^^
|
||||
|
@ -35,28 +35,28 @@ for (^^let a = 1; a ^^< 10; a++) {
|
|||
^^^
|
||||
source.ts
|
||||
^^
|
||||
source.ts keyword.operator.arithmetic.ts
|
||||
source.ts keyword.operator.increment.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
> for (let b = 1; b < a; b++) {
|
||||
^^^^
|
||||
source.ts meta.block.ts
|
||||
^^^
|
||||
source.ts meta.block.ts keyword.control.ts
|
||||
source.ts meta.block.ts keyword.control.loop.ts
|
||||
^
|
||||
source.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.block.ts meta.brace.round.ts
|
||||
^^^
|
||||
source.ts meta.block.ts storage.type.ts
|
||||
^^^
|
||||
source.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.block.ts keyword.operator.comparison.ts
|
||||
source.ts meta.block.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.block.ts
|
||||
^
|
||||
|
@ -64,17 +64,17 @@ for (^^let a = 1; a ^^< 10; a++) {
|
|||
^^^^
|
||||
source.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.block.ts keyword.operator.comparison.ts
|
||||
source.ts meta.block.ts keyword.operator.relational.ts
|
||||
^^^^^
|
||||
source.ts meta.block.ts
|
||||
^^
|
||||
source.ts meta.block.ts keyword.operator.arithmetic.ts
|
||||
source.ts meta.block.ts keyword.operator.increment.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^^^^^^^^^
|
||||
source.ts meta.block.ts meta.block.ts
|
||||
|
@ -82,7 +82,7 @@ for (^^let a = 1; a ^^< 10; a++) {
|
|||
^^^^
|
||||
source.ts meta.block.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
|
@ -11,10 +11,10 @@ for (^^let a = 1; a ^^< 10; a++) {
|
|||
^^^
|
||||
[1, 6]: source.ts storage.type.ts
|
||||
^
|
||||
[1, 19]: source.ts keyword.operator.comparison.ts
|
||||
[1, 19]: source.ts keyword.operator.relational.ts
|
||||
> for (let b = 1; b < a; b++) {
|
||||
^^^
|
||||
[2, 5]: source.ts meta.block.ts keyword.control.ts
|
||||
[2, 5]: source.ts meta.block.ts keyword.control.loop.ts
|
||||
^^^
|
||||
[2, 10]: source.ts meta.block.ts storage.type.ts
|
||||
>
|
||||
|
|
|
@ -31,7 +31,7 @@ var w = ^^0O767;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -46,7 +46,7 @@ var w = ^^0O767;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -61,7 +61,7 @@ var w = ^^0O767;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -76,7 +76,7 @@ var w = ^^0O767;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -91,7 +91,7 @@ var w = ^^0O767;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -106,7 +106,7 @@ var w = ^^0O767;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
|
|
@ -47,21 +47,21 @@ return^^Name+=1;
|
|||
^^^^
|
||||
source.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>var AnotherName = function(){
|
||||
^^^
|
||||
source.ts meta.var.expr.ts storage.type.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -69,20 +69,20 @@ return^^Name+=1;
|
|||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts storage.type.function.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>export function eName(){
|
||||
^^^^^^
|
||||
source.ts meta.function.ts storage.type.ts
|
||||
source.ts meta.function.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.function.ts
|
||||
^^^^^^^^
|
||||
|
@ -92,14 +92,14 @@ return^^Name+=1;
|
|||
^^^^^
|
||||
source.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>export var eAnotherName = function(){
|
||||
^^^^^^
|
||||
source.ts storage.type.ts
|
||||
|
@ -110,7 +110,7 @@ return^^Name+=1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -118,14 +118,14 @@ return^^Name+=1;
|
|||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts storage.type.function.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -135,7 +135,7 @@ return^^Name+=1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -146,7 +146,7 @@ return^^Name+=1;
|
|||
^^^^^^^^^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts keyword.operator.comparison.ts
|
||||
source.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts constant.numeric.decimal.ts
|
||||
^^
|
||||
|
@ -164,7 +164,7 @@ return^^Name+=1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -180,7 +180,7 @@ return^^Name+=1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -195,7 +195,7 @@ return^^Name+=1;
|
|||
^^^^^^^^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts keyword.operator.comparison.ts
|
||||
source.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts string.quoted.double.ts punctuation.definition.string.begin.ts
|
||||
^^^^^
|
||||
|
@ -213,7 +213,7 @@ return^^Name+=1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -223,10 +223,8 @@ return^^Name+=1;
|
|||
>returnName+=1;
|
||||
^^^^^^^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts keyword.operator.arithmetic.ts
|
||||
^
|
||||
source.ts keyword.operator.comparison.ts
|
||||
^^
|
||||
source.ts keyword.operator.assignment.compound.ts
|
||||
^
|
||||
source.ts constant.numeric.decimal.ts
|
||||
^^
|
||||
|
|
|
@ -35,7 +35,7 @@ return^^Name+=1;
|
|||
>}
|
||||
>var AnotherName = function(){
|
||||
^
|
||||
[6, 27]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
[6, 27]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
>}
|
||||
>
|
||||
>export function eName(){
|
||||
|
@ -44,30 +44,30 @@ return^^Name+=1;
|
|||
>}
|
||||
>export var eAnotherName = function(){
|
||||
^
|
||||
[11, 35]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
[11, 35]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
>}
|
||||
>
|
||||
>var functionName=1;
|
||||
^^^^^^^^^^^^
|
||||
[14, 13]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[14, 13]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
>functionName=1;
|
||||
^^^^^^^^^^^^
|
||||
[15, 9]: source.ts
|
||||
>
|
||||
>export var functionName2=1;
|
||||
^^^^^^^^^^^^^
|
||||
[17, 20]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[17, 20]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
>
|
||||
>var exportName="hello";
|
||||
^^^^^^^^^^
|
||||
[19, 11]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[19, 11]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
>exportName2="hello";
|
||||
^^^^^^^^^^^
|
||||
[20, 7]: source.ts
|
||||
>
|
||||
>var returnName=1;
|
||||
^^^^^^^^^^
|
||||
[22, 11]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[22, 11]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
>returnName+=1;
|
||||
^^^^^^^^^^
|
||||
[23, 7]: source.ts
|
||||
|
|
|
@ -37,18 +37,18 @@ original file
|
|||
source.ts
|
||||
>interface NewInterface{
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.interface.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.name.ts entity.name.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> currentData: Data;
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^
|
||||
|
@ -59,7 +59,7 @@ original file
|
|||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -69,10 +69,10 @@ original file
|
|||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -81,7 +81,7 @@ original file
|
|||
source.ts
|
||||
>class NewClass implements NewInterface {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^^
|
||||
|
@ -89,20 +89,20 @@ original file
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> currentData: Data;
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^
|
||||
|
@ -113,7 +113,7 @@ original file
|
|||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -123,32 +123,32 @@ original file
|
|||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> this.currentData = d;
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.relational.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
> }
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> constructor(m: number, n: string){}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -156,7 +156,7 @@ original file
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts
|
||||
^
|
||||
|
@ -168,16 +168,16 @@ original file
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
|
|
@ -29,12 +29,12 @@ original file
|
|||
>
|
||||
>interface NewInterface{
|
||||
^^^^^^^^^
|
||||
[5, 1]: source.ts meta.declaration.object.ts storage.type.ts
|
||||
[5, 1]: source.ts meta.declaration.object.ts storage.type.interface.ts
|
||||
^^^^^^^^^^^^
|
||||
[5, 11]: source.ts meta.declaration.object.ts meta.object.name.ts entity.name.class.ts
|
||||
> currentData: Data;
|
||||
^^^^^^^^^^^
|
||||
[6, 2]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
[6, 2]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
> setVal(d: Data)
|
||||
^^^^^^
|
||||
[7, 2]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
|
@ -43,16 +43,16 @@ original file
|
|||
>
|
||||
>class NewClass implements NewInterface {
|
||||
^^^^^
|
||||
[11, 1]: source.ts meta.declaration.object.ts storage.type.ts
|
||||
[11, 1]: source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
> currentData: Data;
|
||||
^^^^^^^^^^^
|
||||
[12, 2]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
[12, 2]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
> setVal(d: Data){
|
||||
^^^^^^
|
||||
[13, 2]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
> this.currentData = d;
|
||||
^^^^
|
||||
[14, 3]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
[14, 3]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
> }
|
||||
> constructor(m: number, n: string){}
|
||||
^^^^^^^^^^^
|
||||
|
@ -60,11 +60,11 @@ original file
|
|||
^
|
||||
[16, 14]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^^^^^^
|
||||
[16, 17]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
[16, 17]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
[16, 25]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^^^^^^
|
||||
[16, 28]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
[16, 28]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>}
|
||||
>
|
||||
^
|
||||
|
|
|
@ -55,7 +55,7 @@ class A4 {
|
|||
|
||||
>class A1 {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^
|
||||
|
@ -63,20 +63,20 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> b() {
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> let d;
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
|
@ -85,14 +85,14 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
> d.default = 1;
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
|
@ -103,7 +103,7 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -115,33 +115,33 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> }
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>class A2 {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^
|
||||
|
@ -149,20 +149,20 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> b() {
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> let d;
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
|
@ -171,14 +171,14 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
> d.case = 1
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
|
@ -187,7 +187,7 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -199,33 +199,33 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> }
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>class A3 {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^
|
||||
|
@ -233,20 +233,20 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> b() {
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> let d
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
|
@ -255,12 +255,12 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
> d.default = 1
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -269,7 +269,7 @@ class A4 {
|
|||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.switch.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-expression.expr.ts
|
||||
^^^^^^^^^
|
||||
|
@ -279,12 +279,12 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts punctuation.definition.block.ts
|
||||
> case 1:
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts
|
||||
^
|
||||
|
@ -295,7 +295,7 @@ class A4 {
|
|||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts
|
||||
^
|
||||
|
@ -306,26 +306,26 @@ class A4 {
|
|||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts
|
||||
> break;
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts keyword.control.loop.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
> }
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts punctuation.definition.block.ts
|
||||
> }
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -337,33 +337,33 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> }
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>class A4 {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^
|
||||
|
@ -371,20 +371,20 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> b() {
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> let d
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
|
@ -393,12 +393,12 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
> d.case = 1
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -407,7 +407,7 @@ class A4 {
|
|||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.switch.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-expression.expr.ts
|
||||
^^^^^^^^^
|
||||
|
@ -417,12 +417,12 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts punctuation.definition.block.ts
|
||||
> case 1:
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts
|
||||
^
|
||||
|
@ -433,7 +433,7 @@ class A4 {
|
|||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts
|
||||
^
|
||||
|
@ -444,26 +444,26 @@ class A4 {
|
|||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts
|
||||
> break;
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts keyword.control.loop.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
> }
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts punctuation.definition.block.ts
|
||||
> }
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -475,24 +475,24 @@ class A4 {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> }
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
|
@ -65,7 +65,7 @@ class A4 {
|
|||
^^^^^^^
|
||||
[7, 2]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^^^^^^
|
||||
[7, 10]: source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
[7, 10]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
> }
|
||||
>}
|
||||
>
|
||||
|
@ -81,7 +81,7 @@ class A4 {
|
|||
^^^^^^^
|
||||
[17, 2]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^^^^^^
|
||||
[17, 10]: source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
[17, 10]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
> }
|
||||
>}
|
||||
>
|
||||
|
@ -96,13 +96,13 @@ class A4 {
|
|||
[25, 13]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-expression.expr.ts
|
||||
> case 1:
|
||||
^^^^
|
||||
[26, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
[26, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
> case 2:
|
||||
^^^^
|
||||
[27, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
[27, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
> default:
|
||||
^^^^^^^
|
||||
[28, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
[28, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
> break;
|
||||
> }
|
||||
> }
|
||||
|
@ -111,7 +111,7 @@ class A4 {
|
|||
^^^^^^^
|
||||
[33, 2]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^^^^^^
|
||||
[33, 10]: source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
[33, 10]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
> }
|
||||
>}
|
||||
>
|
||||
|
@ -126,13 +126,13 @@ class A4 {
|
|||
[41, 13]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-expression.expr.ts
|
||||
> case 1:
|
||||
^^^^
|
||||
[42, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
[42, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
> case 2:
|
||||
^^^^
|
||||
[43, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
[43, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
> default:
|
||||
^^^^^^^
|
||||
[44, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
[44, 4]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
> break;
|
||||
> }
|
||||
> }
|
||||
|
@ -141,6 +141,6 @@ class A4 {
|
|||
^^^^^^^
|
||||
[49, 2]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^^^^^^
|
||||
[49, 10]: source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
[49, 10]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
> }
|
||||
>}
|
|
@ -80,7 +80,7 @@ var j: I = {}
|
|||
source.ts
|
||||
>import * as req from "./Required"
|
||||
^^^^^^
|
||||
source.ts keyword.control.import.include.ts
|
||||
source.ts keyword.control.import.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
|
@ -88,11 +88,11 @@ var j: I = {}
|
|||
^
|
||||
source.ts
|
||||
^^
|
||||
source.ts keyword.others.ts
|
||||
source.ts keyword.control.as.ts
|
||||
^^^^^
|
||||
source.ts
|
||||
^^^^
|
||||
source.ts keyword.control.import.include.ts
|
||||
source.ts keyword.control.from.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
|
@ -103,19 +103,19 @@ var j: I = {}
|
|||
source.ts string.quoted.double.ts punctuation.definition.string.end.ts
|
||||
>import { Scale } from "./scale";
|
||||
^^^^^^
|
||||
source.ts keyword.control.import.include.ts
|
||||
source.ts keyword.control.import.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^^^^^^^
|
||||
source.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts
|
||||
^^^^
|
||||
source.ts keyword.control.import.include.ts
|
||||
source.ts keyword.control.from.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
|
@ -131,36 +131,36 @@ var j: I = {}
|
|||
source.ts
|
||||
>if (object.instanceof(ClassNew)) {
|
||||
^^
|
||||
source.ts keyword.control.ts
|
||||
source.ts keyword.control.conditional.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
^^^^^^^
|
||||
source.ts
|
||||
^^^^^^^^^^
|
||||
source.ts keyword.others.ts
|
||||
source.ts keyword.operator.instanceof.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
^^^^^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>class class1(){
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^
|
||||
|
@ -168,22 +168,22 @@ var j: I = {}
|
|||
^^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> static functioname(){
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
|
@ -191,20 +191,20 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>export class className(){
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^^^
|
||||
|
@ -212,7 +212,7 @@ var j: I = {}
|
|||
^^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> private state = { }
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -221,36 +221,36 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>void newFunctionName(){
|
||||
^^^^
|
||||
source.ts storage.type.ts
|
||||
source.ts keyword.operator.void.ts
|
||||
^^^^^^^^^^^^^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts meta.block.ts
|
||||
|
@ -262,7 +262,7 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.block.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.block.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^
|
||||
|
@ -280,7 +280,7 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.ts
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.switch.ts
|
||||
^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-expression.expr.ts
|
||||
^^^^^^^
|
||||
|
@ -290,12 +290,12 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.block.ts switch-statement.expr.ts
|
||||
^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts punctuation.definition.block.ts
|
||||
> case 1: break;
|
||||
^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts
|
||||
^
|
||||
|
@ -305,14 +305,14 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts keyword.control.ts
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts keyword.control.loop.ts
|
||||
^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
> case 2: break;
|
||||
^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts
|
||||
^
|
||||
|
@ -322,27 +322,27 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts keyword.control.ts
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts keyword.control.loop.ts
|
||||
^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
> default: break;
|
||||
^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^^^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts
|
||||
^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts keyword.control.ts
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts keyword.control.loop.ts
|
||||
^^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
> }
|
||||
^
|
||||
source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^
|
||||
source.ts meta.block.ts switch-statement.expr.ts
|
||||
source.ts meta.block.ts switch-statement.expr.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.block.ts
|
||||
>
|
||||
|
@ -350,7 +350,7 @@ var j: I = {}
|
|||
source.ts meta.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -374,12 +374,12 @@ var j: I = {}
|
|||
^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
> export function myFun(x: number) {
|
||||
^^^^
|
||||
source.ts meta.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.block.ts meta.function.ts storage.type.ts
|
||||
source.ts meta.block.ts meta.function.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.function.ts
|
||||
^^^^^^^^
|
||||
|
@ -389,7 +389,7 @@ var j: I = {}
|
|||
^^^^^
|
||||
source.ts meta.block.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.block.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -397,28 +397,28 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.block.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.block.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.block.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.block.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.function.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> return x;
|
||||
^^^^^^^^
|
||||
source.ts meta.block.ts meta.function.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.block.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.block.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
^^^^
|
||||
source.ts meta.block.ts meta.function.ts meta.decl.block.ts
|
||||
> }
|
||||
^^^^
|
||||
source.ts meta.block.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -428,13 +428,13 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts keyword.others.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts keyword.operator.typeof.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^
|
||||
|
@ -442,7 +442,7 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.comparison.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.relational.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^
|
||||
|
@ -456,19 +456,19 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts keyword.others.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts keyword.operator.new.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts constant.numeric.decimal.ts
|
||||
^^
|
||||
|
@ -476,20 +476,20 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts constant.numeric.decimal.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts
|
||||
>delete (adder)
|
||||
^^^^^^
|
||||
source.ts keyword.others.ts
|
||||
source.ts keyword.operator.delete.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
^^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.brace.paren.ts
|
||||
source.ts meta.brace.round.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -499,24 +499,24 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.others.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.typeof.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts punctuation.definition.block.ts
|
||||
^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
>interface I {}
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.interface.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
|
@ -524,16 +524,16 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>var j: I = {}
|
||||
^^^
|
||||
source.ts meta.var.expr.ts storage.type.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^
|
||||
|
@ -543,13 +543,13 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.comparison.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -562,16 +562,16 @@ var j: I = {}
|
|||
^^^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
> export class Cell {
|
||||
^^^^
|
||||
source.ts meta.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts
|
||||
^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts
|
||||
^^^^
|
||||
|
@ -579,7 +579,7 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> public parent: Cell;
|
||||
^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -588,7 +588,7 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^
|
||||
|
@ -602,7 +602,7 @@ var j: I = {}
|
|||
^^^^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.type.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -612,33 +612,33 @@ var j: I = {}
|
|||
^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> this.parent = parent;
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.comparison.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.relational.ts
|
||||
^^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
> if (typeof parent === 'object' || parent instanceof Error) {
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.conditional.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.others.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.typeof.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^
|
||||
|
@ -654,19 +654,19 @@ var j: I = {}
|
|||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.arithmetic.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.logical.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.others.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.instanceof.ts
|
||||
^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^^^^^^^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts
|
||||
|
@ -674,20 +674,20 @@ var j: I = {}
|
|||
^^^^^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.block.ts punctuation.definition.block.ts
|
||||
> }
|
||||
^^^^^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> }
|
||||
^^^^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
|
|
@ -74,30 +74,30 @@ var j: I = {}
|
|||
>
|
||||
>import * as req from "./Required"
|
||||
^^^^^^
|
||||
[3, 1]: source.ts keyword.control.import.include.ts
|
||||
[3, 1]: source.ts keyword.control.import.ts
|
||||
^
|
||||
[3, 8]: source.ts keyword.operator.arithmetic.ts
|
||||
^^
|
||||
[3, 10]: source.ts keyword.others.ts
|
||||
[3, 10]: source.ts keyword.control.as.ts
|
||||
^^^^
|
||||
[3, 17]: source.ts keyword.control.import.include.ts
|
||||
[3, 17]: source.ts keyword.control.from.ts
|
||||
>import { Scale } from "./scale";
|
||||
>
|
||||
>if (object.instanceof(ClassNew)) {
|
||||
^^
|
||||
[6, 1]: source.ts keyword.control.ts
|
||||
[6, 1]: source.ts keyword.control.conditional.ts
|
||||
^^^^^^^^^^
|
||||
[6, 12]: source.ts keyword.others.ts
|
||||
[6, 12]: source.ts keyword.operator.instanceof.ts
|
||||
>}
|
||||
>
|
||||
>class class1(){
|
||||
^^^^^
|
||||
[9, 1]: source.ts meta.declaration.object.ts storage.type.ts
|
||||
[9, 1]: source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^^^^^^
|
||||
[9, 7]: source.ts meta.declaration.object.ts meta.object.name.ts entity.name.class.ts
|
||||
> static functioname(){
|
||||
^^^^^^
|
||||
[10, 2]: source.ts meta.declaration.object.ts meta.object.body.ts keyword.other.ts
|
||||
[10, 2]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^^^^^^^^^^^
|
||||
[10, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
>
|
||||
|
@ -106,19 +106,19 @@ var j: I = {}
|
|||
>
|
||||
>export class className(){
|
||||
^^^^^^
|
||||
[15, 1]: source.ts meta.declaration.object.ts storage.type.ts
|
||||
[15, 1]: source.ts meta.declaration.object.ts keyword.control.export.ts
|
||||
^^^^^
|
||||
[15, 8]: source.ts meta.declaration.object.ts storage.type.ts
|
||||
[15, 8]: source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
> private state = { }
|
||||
^^^^^^^
|
||||
[16, 2]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^^^^^
|
||||
[16, 10]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
[16, 10]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
>}
|
||||
>
|
||||
>void newFunctionName(){
|
||||
^^^^
|
||||
[19, 1]: source.ts storage.type.ts
|
||||
[19, 1]: source.ts keyword.operator.void.ts
|
||||
^^^^^^^^^^^^^^^^
|
||||
[19, 6]: source.ts
|
||||
>
|
||||
|
@ -130,16 +130,16 @@ var j: I = {}
|
|||
>
|
||||
> switch (someNum) {
|
||||
^^^^^^
|
||||
[23, 2]: source.ts meta.block.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.ts
|
||||
[23, 2]: source.ts meta.block.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.switch.ts
|
||||
> case 1: break;
|
||||
^^^^
|
||||
[24, 3]: source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
[24, 3]: source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
> case 2: break;
|
||||
^^^^
|
||||
[25, 3]: source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
[25, 3]: source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
> default: break;
|
||||
^^^^^^^
|
||||
[26, 3]: source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
[26, 3]: source.ts meta.block.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
> }
|
||||
>
|
||||
>}
|
||||
|
@ -153,21 +153,21 @@ var j: I = {}
|
|||
[35, 1]: source.ts storage.type.ts
|
||||
> export function myFun(x: number) {
|
||||
^^^^^^
|
||||
[36, 5]: source.ts meta.block.ts meta.function.ts storage.type.ts
|
||||
[36, 5]: source.ts meta.block.ts meta.function.ts keyword.control.export.ts
|
||||
> return x;
|
||||
> }
|
||||
>}
|
||||
>
|
||||
>var m: typeof M = M;
|
||||
^^^^^^
|
||||
[41, 8]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts keyword.others.ts
|
||||
[41, 8]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts keyword.operator.typeof.ts
|
||||
>
|
||||
>var adder = new Adder(3, 4);
|
||||
^^^
|
||||
[43, 13]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts keyword.others.ts
|
||||
[43, 13]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts new.expr.ts keyword.operator.new.ts
|
||||
>delete (adder)
|
||||
^^^^^^
|
||||
[44, 1]: source.ts keyword.others.ts
|
||||
[44, 1]: source.ts keyword.operator.delete.ts
|
||||
>
|
||||
>var s = typeof {}git
|
||||
>interface I {}
|
||||
|
@ -181,16 +181,16 @@ var j: I = {}
|
|||
[51, 8]: source.ts
|
||||
> export class Cell {
|
||||
^^^^^^
|
||||
[52, 5]: source.ts meta.block.ts meta.declaration.object.ts storage.type.ts
|
||||
[52, 5]: source.ts meta.block.ts meta.declaration.object.ts keyword.control.export.ts
|
||||
^^^^^
|
||||
[52, 12]: source.ts meta.block.ts meta.declaration.object.ts storage.type.ts
|
||||
[52, 12]: source.ts meta.block.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^^^^
|
||||
[52, 18]: source.ts meta.block.ts meta.declaration.object.ts meta.object.name.ts entity.name.class.ts
|
||||
> public parent: Cell;
|
||||
^^^^^^
|
||||
[53, 9]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^^^^^^
|
||||
[53, 16]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
[53, 16]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^^^^
|
||||
[53, 24]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
>
|
||||
|
@ -203,12 +203,12 @@ var j: I = {}
|
|||
[55, 29]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.name.ts
|
||||
> this.parent = parent;
|
||||
^^^^
|
||||
[56, 13]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
[56, 13]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^^^^^^^
|
||||
[56, 27]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
> if (typeof parent === 'object' || parent instanceof Error) {
|
||||
^^^^^^
|
||||
[57, 17]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.others.ts
|
||||
[57, 17]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.typeof.ts
|
||||
^^^^^^^^
|
||||
[57, 24]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^
|
||||
|
@ -218,7 +218,7 @@ var j: I = {}
|
|||
^^^^^^^^
|
||||
[57, 47]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^^^^^^^
|
||||
[57, 54]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.others.ts
|
||||
[57, 54]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.operator.instanceof.ts
|
||||
^^^^^^
|
||||
[57, 65]: source.ts meta.block.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
>
|
||||
|
|
|
@ -17,7 +17,7 @@ original file
|
|||
source.ts
|
||||
>interface TestInterface {
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.interface.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^^^^^^^
|
||||
|
@ -25,16 +25,16 @@ original file
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> testvar: string;
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
> testfunc(): string;
|
||||
|
@ -43,20 +43,20 @@ original file
|
|||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
|
|
@ -15,22 +15,22 @@ original file
|
|||
>
|
||||
>interface TestInterface {
|
||||
^^^^^^^^^
|
||||
[2, 1]: source.ts meta.declaration.object.ts storage.type.ts
|
||||
[2, 1]: source.ts meta.declaration.object.ts storage.type.interface.ts
|
||||
^^^^^^^^^^^^^
|
||||
[2, 11]: source.ts meta.declaration.object.ts meta.object.name.ts entity.name.class.ts
|
||||
> testvar: string;
|
||||
^^^^^^^
|
||||
[3, 3]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
[3, 3]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^^^^
|
||||
[3, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.primitive.ts support.type.ts
|
||||
[3, 12]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
> testfunc(): string;
|
||||
^^^^^^^^
|
||||
[4, 3]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^^^^^^
|
||||
[4, 15]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
[4, 15]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>}
|
||||
^
|
||||
[5, 1]: source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
[5, 1]: source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
>/*
|
||||
> Testing Comments
|
||||
|
|
|
@ -43,7 +43,7 @@ let new_string = ^^"^^Changes End here^^"
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -66,7 +66,7 @@ let new_string = ^^"^^Changes End here^^"
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -101,7 +101,7 @@ let new_string = ^^"^^Changes End here^^"
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -140,7 +140,7 @@ let new_string = ^^"^^Changes End here^^"
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -210,7 +210,7 @@ let new_string = ^^"^^Changes End here^^"
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -302,7 +302,7 @@ let new_string = ^^"^^Changes End here^^"
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
|
|
@ -18,15 +18,15 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
|
||||
>type Callback <T> = (error: Error, value: T) => any
|
||||
^^^^
|
||||
source.ts meta.type.declaration.ts keyword.other.ts
|
||||
source.ts meta.type.declaration.ts storage.type.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.type.declaration.ts entity.name.class.ts
|
||||
source.ts meta.type.declaration.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.name.ts
|
||||
^
|
||||
|
@ -34,9 +34,9 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.type.declaration.ts keyword.operator.assignment.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^^^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^^
|
||||
|
@ -52,27 +52,27 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts
|
||||
^^^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>type Callback<T > = (error: Error, value: T) => any
|
||||
^^^^
|
||||
source.ts meta.type.declaration.ts keyword.other.ts
|
||||
source.ts meta.type.declaration.ts storage.type.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.type.declaration.ts entity.name.class.ts
|
||||
source.ts meta.type.declaration.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.name.ts
|
||||
^
|
||||
|
@ -82,9 +82,9 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.type.declaration.ts keyword.operator.assignment.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^^^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^^
|
||||
|
@ -100,31 +100,31 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts
|
||||
^^^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>type Callback = (error: Error, value: T) => any
|
||||
^^^^
|
||||
source.ts meta.type.declaration.ts keyword.other.ts
|
||||
source.ts meta.type.declaration.ts storage.type.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.type.declaration.ts entity.name.class.ts
|
||||
source.ts meta.type.declaration.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.type.declaration.ts keyword.operator.assignment.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^^^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^^
|
||||
|
@ -140,41 +140,43 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts
|
||||
^^^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
>type Callback<string | (a: number, b: string) => void> = (error: Error, value: T) => any
|
||||
^^^^
|
||||
source.ts meta.type.declaration.ts keyword.other.ts
|
||||
source.ts meta.type.declaration.ts storage.type.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.type.declaration.ts entity.name.class.ts
|
||||
source.ts meta.type.declaration.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts keyword.operator.type.ts
|
||||
^^
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts
|
||||
^^^^^^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts
|
||||
^
|
||||
|
@ -182,25 +184,25 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
^^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts
|
||||
^^^^^^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.function.return.ts
|
||||
^^^^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.type.declaration.ts keyword.operator.assignment.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^^^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^^
|
||||
|
@ -216,15 +218,15 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.type.name.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts
|
||||
^^^
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -232,15 +234,15 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
^
|
||||
source.ts
|
||||
^^^^
|
||||
source.ts meta.type.declaration.ts keyword.other.ts
|
||||
source.ts meta.type.declaration.ts storage.type.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^^
|
||||
source.ts meta.type.declaration.ts entity.name.class.ts
|
||||
source.ts meta.type.declaration.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.name.ts
|
||||
^
|
||||
|
@ -250,9 +252,9 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.type.declaration.ts keyword.operator.assignment.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts
|
||||
|
@ -260,7 +262,7 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
^
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^^^
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^^
|
||||
|
@ -269,14 +271,14 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
^
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^^^
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts
|
||||
^^^^^^
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts meta.brace.curly.ts
|
||||
source.ts meta.type.declaration.ts meta.object.type.ts punctuation.definition.block.ts
|
|
@ -18,71 +18,71 @@ type Callback = ^^(error: Error, value: T) => ^^any
|
|||
|
||||
>type Callback <T> = (error: Error, value: T) => any
|
||||
^^^^
|
||||
[1, 1]: source.ts meta.type.declaration.ts keyword.other.ts
|
||||
[1, 1]: source.ts meta.type.declaration.ts storage.type.type.ts
|
||||
^^^^^^^^
|
||||
[1, 6]: source.ts meta.type.declaration.ts entity.name.class.ts
|
||||
[1, 6]: source.ts meta.type.declaration.ts entity.name.type.ts
|
||||
^
|
||||
[1, 16]: source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.name.ts
|
||||
^
|
||||
[1, 21]: source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
[1, 21]: source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
>
|
||||
>type Callback<T > = (error: Error, value: T) => any
|
||||
^^^^
|
||||
[3, 1]: source.ts meta.type.declaration.ts keyword.other.ts
|
||||
[3, 1]: source.ts meta.type.declaration.ts storage.type.type.ts
|
||||
^
|
||||
[3, 14]: source.ts meta.type.declaration.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
[3, 14]: source.ts meta.type.declaration.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^
|
||||
[3, 21]: source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
[3, 21]: source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^
|
||||
[3, 46]: source.ts meta.type.declaration.ts meta.type.function.return.ts keyword.operator.ts
|
||||
[3, 46]: source.ts meta.type.declaration.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^^^
|
||||
[3, 49]: source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
[3, 49]: source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>
|
||||
>type Callback = (error: Error, value: T) => any
|
||||
^
|
||||
[5, 17]: source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
[5, 17]: source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^
|
||||
[5, 45]: source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
[5, 45]: source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>
|
||||
>type Callback<string | (a: number, b: string) => void> = (error: Error, value: T) => any
|
||||
^^^^
|
||||
[7, 1]: source.ts meta.type.declaration.ts keyword.other.ts
|
||||
[7, 1]: source.ts meta.type.declaration.ts storage.type.type.ts
|
||||
^^^^^^^^
|
||||
[7, 6]: source.ts meta.type.declaration.ts entity.name.class.ts
|
||||
[7, 6]: source.ts meta.type.declaration.ts entity.name.type.ts
|
||||
^
|
||||
[7, 14]: source.ts meta.type.declaration.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
[7, 14]: source.ts meta.type.declaration.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^
|
||||
[7, 22]: source.ts meta.type.declaration.ts meta.type.parameters.ts keyword.operator.type.ts
|
||||
^^
|
||||
[7, 24]: source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts
|
||||
^
|
||||
[7, 24]: source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^^
|
||||
[7, 50]: source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
[7, 50]: source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
[7, 58]: source.ts meta.type.declaration.ts meta.type.paren.cover.ts
|
||||
[7, 58]: source.ts meta.type.declaration.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^
|
||||
[7, 86]: source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
[7, 86]: source.ts meta.type.declaration.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>
|
||||
> type Foo <T > = {
|
||||
^
|
||||
[9, 1]: source.ts
|
||||
^^^
|
||||
[9, 7]: source.ts meta.type.declaration.ts entity.name.class.ts
|
||||
[9, 7]: source.ts meta.type.declaration.ts entity.name.type.ts
|
||||
^
|
||||
[9, 12]: source.ts meta.type.declaration.ts meta.type.parameters.ts meta.type.name.ts
|
||||
^
|
||||
[9, 18]: source.ts meta.type.declaration.ts meta.object.type.ts meta.brace.curly.ts
|
||||
[9, 18]: source.ts meta.type.declaration.ts meta.object.type.ts punctuation.definition.block.ts
|
||||
>
|
||||
> foo: T,
|
||||
^^^
|
||||
[11, 2]: source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
[11, 2]: source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^
|
||||
[11, 7]: source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts
|
||||
> bar: number
|
||||
^^^
|
||||
[12, 2]: source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts variable.ts
|
||||
[12, 2]: source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^^^^
|
||||
[12, 7]: source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts meta.type.primitive.ts support.type.ts
|
||||
[12, 7]: source.ts meta.type.declaration.ts meta.object.type.ts meta.field.declaration.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>
|
||||
>}
|
||||
^
|
||||
[14, 1]: source.ts meta.type.declaration.ts meta.object.type.ts meta.brace.curly.ts
|
||||
[14, 1]: source.ts meta.type.declaration.ts meta.object.type.ts punctuation.definition.block.ts
|
|
@ -12,7 +12,7 @@ class Foo {
|
|||
|
||||
>class Foo {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^
|
||||
|
@ -20,14 +20,14 @@ class Foo {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> constructor(
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
> test: number, // foo bar,
|
||||
^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts
|
||||
|
@ -38,7 +38,7 @@ class Foo {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts
|
||||
^^
|
||||
|
@ -52,18 +52,20 @@ class Foo {
|
|||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.function.return.ts
|
||||
^^
|
||||
|
@ -74,11 +76,11 @@ class Foo {
|
|||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
|
@ -86,7 +88,7 @@ class Foo {
|
|||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
|
@ -16,14 +16,14 @@ class Foo {
|
|||
^^^^
|
||||
[3, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^^^^^^
|
||||
[3, 15]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
[3, 15]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^^^^^^^^
|
||||
[3, 25]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts comment.line.double-slash.ts
|
||||
> exitEditModeCallback: () => void // Used to re-enable View updates.
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
[4, 9]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^^
|
||||
[4, 31]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
[4, 31]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[4, 44]: source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts comment.line.double-slash.ts
|
||||
> ) {
|
||||
|
|
|
@ -28,11 +28,11 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
|
||||
>export class A extends /* */B implements/**/ C{
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
|
@ -40,7 +40,7 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^
|
||||
|
@ -50,11 +50,11 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts comment.block.ts punctuation.definition.comment.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts comment.block.ts punctuation.definition.comment.ts
|
||||
^^
|
||||
|
@ -62,15 +62,15 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -82,11 +82,11 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
source.ts
|
||||
>export class D implements/**/ F extends /**/G {
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
|
@ -94,7 +94,7 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts comment.block.ts punctuation.definition.comment.ts
|
||||
^^
|
||||
|
@ -102,11 +102,11 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts
|
||||
^^
|
||||
|
@ -114,17 +114,17 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts comment.block.ts punctuation.definition.comment.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -133,11 +133,11 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
source.ts
|
||||
>export class E extends /**/H implements/**/ One, Two, Three{
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
|
@ -145,7 +145,7 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^
|
||||
|
@ -153,11 +153,11 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts comment.block.ts punctuation.definition.comment.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts comment.block.ts punctuation.definition.comment.ts
|
||||
^^
|
||||
|
@ -165,23 +165,23 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -190,7 +190,7 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
source.ts
|
||||
>class className extends class1 implements class2 {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^^^
|
||||
|
@ -198,29 +198,29 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts keyword.other.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
|
|
@ -28,19 +28,19 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
|
||||
>export class A extends /* */B implements/**/ C{
|
||||
^^^^^
|
||||
[1, 8]: source.ts meta.declaration.object.ts storage.type.ts
|
||||
[1, 8]: source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
[1, 14]: source.ts meta.declaration.object.ts meta.object.name.ts entity.name.class.ts
|
||||
^^^^^^^
|
||||
[1, 16]: source.ts meta.declaration.object.ts meta.object.heritage.ts keyword.other.ts
|
||||
[1, 16]: source.ts meta.declaration.object.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^^
|
||||
[1, 27]: source.ts meta.declaration.object.ts meta.object.heritage.ts comment.block.ts
|
||||
^
|
||||
[1, 30]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
[1, 30]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^^^^^^^^^^
|
||||
[1, 32]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts keyword.other.ts
|
||||
[1, 32]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^
|
||||
[1, 47]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
[1, 47]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
>
|
||||
^^^
|
||||
[2, 2]: source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -54,13 +54,13 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^
|
||||
[7, 14]: source.ts meta.declaration.object.ts meta.object.name.ts entity.name.class.ts
|
||||
^^^^^^^^^^
|
||||
[7, 16]: source.ts meta.declaration.object.ts meta.object.heritage.ts keyword.other.ts
|
||||
[7, 16]: source.ts meta.declaration.object.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^^
|
||||
[7, 31]: source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^^^^^^
|
||||
[7, 34]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts keyword.other.ts
|
||||
[7, 34]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^
|
||||
[7, 46]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
[7, 46]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^^
|
||||
[7, 48]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts
|
||||
>
|
||||
|
@ -75,19 +75,19 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
^
|
||||
[12, 14]: source.ts meta.declaration.object.ts meta.object.name.ts entity.name.class.ts
|
||||
^^^^^^^
|
||||
[12, 16]: source.ts meta.declaration.object.ts meta.object.heritage.ts keyword.other.ts
|
||||
[12, 16]: source.ts meta.declaration.object.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^
|
||||
[12, 28]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
[12, 28]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^^
|
||||
[12, 30]: source.ts meta.declaration.object.ts meta.object.heritage.ts
|
||||
^^
|
||||
[12, 43]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts comment.block.ts punctuation.definition.comment.ts
|
||||
^^^
|
||||
[12, 46]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
[12, 46]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^^^
|
||||
[12, 51]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
[12, 51]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^^^^^
|
||||
[12, 56]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
[12, 56]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
>
|
||||
^^^
|
||||
[13, 2]: source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -98,17 +98,17 @@ export class ^^E ^^extends /**/^^H ^^ implements/*^^*/ ^^One, ^^Two, ^^Three{
|
|||
>
|
||||
>class className extends class1 implements class2 {
|
||||
^^^^^
|
||||
[17, 1]: source.ts meta.declaration.object.ts storage.type.ts
|
||||
[17, 1]: source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^^^^^^^^^
|
||||
[17, 7]: source.ts meta.declaration.object.ts meta.object.name.ts entity.name.class.ts
|
||||
^^^^^^^
|
||||
[17, 17]: source.ts meta.declaration.object.ts meta.object.heritage.ts keyword.other.ts
|
||||
[17, 17]: source.ts meta.declaration.object.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^^^^^^
|
||||
[17, 25]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
[17, 25]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
^^^^^^^^^^
|
||||
[17, 32]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts keyword.other.ts
|
||||
[17, 32]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts storage.modifier.ts
|
||||
^^^^^^
|
||||
[17, 43]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts support.type.ts
|
||||
[17, 43]: source.ts meta.declaration.object.ts meta.object.heritage.ts meta.object.heritage.ts meta.object.heritage.parent.ts entity.other.inherited-class.ts
|
||||
>
|
||||
^^^^^
|
||||
[18, 5]: source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
|
|
@ -15,7 +15,7 @@ original file
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -32,7 +32,7 @@ original file
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -49,13 +49,13 @@ original file
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.arithmetic.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.bitwise.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^
|
||||
|
|
|
@ -14,18 +14,18 @@ original file
|
|||
^
|
||||
[2, 1]: source.ts meta.var.expr.ts
|
||||
^
|
||||
[2, 6]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[2, 6]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
[2, 10]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts constant.numeric.decimal.ts
|
||||
> var c = a ^ b;
|
||||
^
|
||||
[3, 1]: source.ts meta.var.expr.ts
|
||||
^
|
||||
[3, 6]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[3, 6]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^^
|
||||
[3, 10]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
[3, 12]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.arithmetic.ts
|
||||
[3, 12]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.bitwise.ts
|
||||
^^
|
||||
[3, 14]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
>
|
||||
|
|
|
@ -20,7 +20,7 @@ const^^able^^ += " Royal, I say!";
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts
|
||||
>let variable;
|
||||
|
@ -29,7 +29,7 @@ const^^able^^ += " Royal, I say!";
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts
|
||||
>
|
||||
|
@ -50,7 +50,7 @@ const^^able^^ += " Royal, I say!";
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -62,10 +62,8 @@ const^^able^^ += " Royal, I say!";
|
|||
>constenum += 10;
|
||||
^^^^^^^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts keyword.operator.arithmetic.ts
|
||||
^
|
||||
source.ts keyword.operator.comparison.ts
|
||||
^^
|
||||
source.ts keyword.operator.assignment.compound.ts
|
||||
^
|
||||
source.ts
|
||||
^^
|
||||
|
@ -78,19 +76,19 @@ const^^able^^ += " Royal, I say!";
|
|||
^
|
||||
source.ts meta.enum.declaration.ts
|
||||
^^^^
|
||||
source.ts meta.enum.declaration.ts storage.type.ts
|
||||
source.ts meta.enum.declaration.ts storage.type.enum.ts
|
||||
^
|
||||
source.ts meta.enum.declaration.ts
|
||||
^
|
||||
source.ts meta.enum.declaration.ts entity.name.class.ts
|
||||
source.ts meta.enum.declaration.ts entity.name.type.enum.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -100,7 +98,7 @@ const^^able^^ += " Royal, I say!";
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -116,10 +114,8 @@ const^^able^^ += " Royal, I say!";
|
|||
>constable += " Royal, I say!";
|
||||
^^^^^^^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts keyword.operator.arithmetic.ts
|
||||
^
|
||||
source.ts keyword.operator.comparison.ts
|
||||
^^
|
||||
source.ts keyword.operator.assignment.compound.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
|
|
|
@ -30,7 +30,7 @@ const^^able^^ += " Royal, I say!";
|
|||
>
|
||||
>var constenum = 10;
|
||||
^^^^^^^^^
|
||||
[7, 10]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[7, 10]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
[7, 14]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
>constenum += 10;
|
||||
|
@ -46,7 +46,7 @@ const^^able^^ += " Royal, I say!";
|
|||
>
|
||||
>var constable = "I am rrrrrroyal!";
|
||||
^^^^^^^^^
|
||||
[11, 10]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[11, 10]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
[11, 14]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
>constable += " Royal, I say!";
|
||||
|
|
|
@ -11,7 +11,7 @@ class A {
|
|||
|
||||
>class A {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
|
@ -19,14 +19,14 @@ class A {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> constructor(private a: string, protected b: string, public c: string) {
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts storage.type.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts parameter.name.ts storage.modifier.ts
|
||||
^
|
||||
|
@ -38,7 +38,7 @@ class A {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts
|
||||
^
|
||||
|
@ -54,7 +54,7 @@ class A {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts
|
||||
^
|
||||
|
@ -70,40 +70,40 @@ class A {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> }
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> foo() {
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> return this.a + this.b + this.c;
|
||||
^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
|
@ -111,7 +111,7 @@ class A {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
|
@ -119,14 +119,14 @@ class A {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts constant.language.this.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts variable.language.this.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
> }
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.method.declaration.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
|
@ -21,7 +21,7 @@ var y ^^"some string 2"
|
|||
source.ts
|
||||
>class SomeClass {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^^^^^^
|
||||
|
@ -29,7 +29,7 @@ var y ^^"some string 2"
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> "some string"
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -41,7 +41,7 @@ var y ^^"some string 2"
|
|||
source.ts meta.declaration.object.ts meta.object.body.ts string.quoted.double.ts punctuation.definition.string.end.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -51,7 +51,7 @@ var y ^^"some string 2"
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
|
|
@ -57,7 +57,7 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
|
||||
>class MyComponent extends React.Component<Props, State>{
|
||||
^^^^^
|
||||
source.tsx meta.declaration.object.tsx storage.type.tsx
|
||||
source.tsx meta.declaration.object.tsx storage.type.class.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx
|
||||
^^^^^^^^^^^
|
||||
|
@ -65,17 +65,17 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
^
|
||||
source.tsx meta.declaration.object.tsx
|
||||
^^^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.heritage.tsx keyword.other.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.heritage.tsx storage.modifier.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.heritage.tsx
|
||||
^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.heritage.tsx meta.object.heritage.parent.tsx support.type.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.heritage.tsx meta.object.heritage.parent.tsx entity.other.inherited-class.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.heritage.tsx
|
||||
^^^^^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.heritage.tsx meta.type.parameters.tsx entity.name.type.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.heritage.tsx meta.type.parameters.tsx meta.brace.angle.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.heritage.tsx meta.type.parameters.tsx punctuation.definition.typeparameters.begin.tsx
|
||||
^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.heritage.tsx meta.type.parameters.tsx meta.type.name.tsx
|
||||
^^
|
||||
|
@ -85,54 +85,54 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.heritage.tsx meta.type.parameters.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx punctuation.definition.block.tsx
|
||||
> render() {
|
||||
^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx
|
||||
^^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx entity.name.function.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.function.type.parameter.tsx meta.brace.round.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.function.type.parameter.tsx punctuation.definition.parameters.begin.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.function.type.parameter.tsx meta.brace.round.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.function.type.parameter.tsx punctuation.definition.parameters.end.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx punctuation.definition.block.tsx
|
||||
> return <div onClick={this.stop}>
|
||||
^^^^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx
|
||||
^^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx keyword.control.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx keyword.control.flow.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx entity.name.tag.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx meta.tag.attribute-name.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx
|
||||
^^^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx keyword.operator.assignment.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx keyword.operator.assignment.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx meta.brace.curly.tsx constant.language.this.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx meta.brace.curly.tsx variable.language.this.tsx
|
||||
^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx meta.brace.curly.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
> This is a test: {this.state.count}
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.jsx.children.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.jsx.children.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.jsx.children.tsx meta.brace.curly.tsx constant.language.this.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.jsx.children.tsx meta.brace.curly.tsx variable.language.this.tsx
|
||||
^^^^^^^^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.jsx.children.tsx meta.brace.curly.tsx
|
||||
^
|
||||
|
@ -141,19 +141,19 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
^^^^^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.jsx.children.tsx
|
||||
^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.close.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.close.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.close.tsx entity.name.tag.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.close.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.close.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.close.tsx punctuation.definition.tag.end.tsx
|
||||
> }
|
||||
^^^^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx punctuation.definition.block.tsx
|
||||
>}
|
||||
^
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.declaration.object.tsx meta.object.body.tsx punctuation.definition.block.tsx
|
||||
>
|
||||
^
|
||||
source.tsx
|
||||
|
@ -173,91 +173,91 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
> <Form>
|
||||
^^^^
|
||||
source.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^
|
||||
source.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
> <FormRow>
|
||||
^^^^^^^^
|
||||
source.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
> <FormLabel data="1" />
|
||||
^^^^^^^^^^^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx entity.name.tag.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx
|
||||
^^^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx keyword.operator.assignment.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx keyword.operator.assignment.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.double.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.double.tsx punctuation.definition.string.begin.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.double.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.double.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.double.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.double.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx
|
||||
^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
> <FormInput data="2" />
|
||||
^^^^^^^^^^^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx entity.name.tag.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx
|
||||
^^^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx keyword.operator.assignment.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx keyword.operator.assignment.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.double.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.double.tsx punctuation.definition.string.begin.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.double.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.double.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.double.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.double.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx
|
||||
^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
> </FormRow>
|
||||
^^^^^^^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx
|
||||
^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
> </Form>
|
||||
^^^^
|
||||
source.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx
|
||||
^^
|
||||
source.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^
|
||||
source.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
>
|
||||
^
|
||||
source.tsx
|
||||
|
@ -267,98 +267,98 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.brace.paren.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.brace.round.tsx
|
||||
> <Form>
|
||||
^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
> <FormRow>
|
||||
^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
> <FormLabel data='1' />
|
||||
^^^^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx
|
||||
^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx keyword.operator.assignment.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx keyword.operator.assignment.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.single.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.single.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
> <FormInput data='2' />
|
||||
^^^^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx
|
||||
^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx keyword.operator.assignment.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx keyword.operator.assignment.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.single.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.single.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
> </FormRow>
|
||||
^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
> </Form>
|
||||
^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
>)
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.brace.paren.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.brace.round.tsx
|
||||
>
|
||||
^
|
||||
source.tsx
|
||||
|
@ -368,75 +368,75 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.brace.paren.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.brace.round.tsx
|
||||
> <Nav>
|
||||
^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
> {/* child comment, put {} around */}
|
||||
^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx comment.block.tsx punctuation.definition.comment.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx comment.block.tsx punctuation.definition.comment.tsx
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx comment.block.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx comment.block.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx comment.block.tsx punctuation.definition.comment.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx comment.block.tsx punctuation.definition.comment.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
> <Person name={window.isLoggedIn ? window.name : ''}
|
||||
^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx
|
||||
^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx keyword.operator.assignment.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx keyword.operator.assignment.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.brace.curly.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
> />
|
||||
^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
> </Nav>
|
||||
^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
>);
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.brace.paren.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.brace.round.tsx
|
||||
^^
|
||||
source.tsx
|
||||
>
|
||||
|
@ -458,29 +458,29 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.block.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.block.tsx punctuation.definition.block.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.block.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.block.tsx punctuation.definition.block.tsx
|
||||
^^
|
||||
source.tsx
|
||||
>props.foo = x;
|
||||
^^^^^^^^^^
|
||||
source.tsx
|
||||
^
|
||||
source.tsx keyword.operator.comparison.tsx
|
||||
source.tsx keyword.operator.relational.tsx
|
||||
^^^^
|
||||
source.tsx
|
||||
>props.bar = y;
|
||||
^^^^^^^^^^
|
||||
source.tsx
|
||||
^
|
||||
source.tsx keyword.operator.comparison.tsx
|
||||
source.tsx keyword.operator.relational.tsx
|
||||
^^^^
|
||||
source.tsx
|
||||
>var component = <Component {...props} />;
|
||||
|
@ -489,27 +489,27 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
^^
|
||||
source.tsx
|
||||
>
|
||||
|
@ -521,13 +521,13 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.block.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.block.tsx punctuation.definition.block.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.block.tsx
|
||||
^^^^
|
||||
|
@ -543,50 +543,50 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.block.tsx meta.object.member.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.block.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.block.tsx punctuation.definition.block.tsx
|
||||
>var component2 = <Component {...props} foo={'override'} />
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx storage.type.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.tag.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx keyword.operator.assignment.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx keyword.operator.assignment.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx string.quoted.single.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx string.quoted.single.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
>
|
||||
^
|
||||
source.tsx
|
||||
|
@ -606,233 +606,233 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx constant.character.escape.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx constant.character.escape.tsx
|
||||
^^^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
>var b = <div>{'First ' + String.fromCharCode(183) + ' Second'}</div>
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx storage.type.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx keyword.operator.arithmetic.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx keyword.operator.arithmetic.tsx
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.brace.paren.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.brace.round.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx constant.numeric.decimal.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx constant.numeric.decimal.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.brace.paren.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.brace.round.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx keyword.operator.arithmetic.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx keyword.operator.arithmetic.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
>var c = <div>{['First ', <span>·</span>, ' Second']}</div>
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx storage.type.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.brace.square.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.brace.square.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx tag.without-attributes.tsx constant.character.entity.tsx punctuation.definition.entity.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.tag.without-attributes.tsx constant.character.entity.tsx punctuation.definition.entity.tsx
|
||||
^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx tag.without-attributes.tsx constant.character.entity.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.tag.without-attributes.tsx constant.character.entity.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx tag.without-attributes.tsx constant.character.entity.tsx punctuation.definition.entity.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.tag.without-attributes.tsx constant.character.entity.tsx punctuation.definition.entity.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.brace.square.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.brace.square.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.end.tsx
|
||||
>var d = <div dangerouslySetInnerHTML={{__html: 'First · Second'}} />
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx storage.type.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.tag.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx keyword.operator.assignment.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx keyword.operator.assignment.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.start.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx meta.block.tsx punctuation.definition.block.tsx
|
||||
^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx string.quoted.single.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx string.quoted.single.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx string.quoted.single.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.brace.curly.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx meta.block.tsx punctuation.definition.block.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx punctuation.definition.brace.curly.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
>var e = <div data-custom-attribute="foo" />
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx storage.type.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx variable.other.readwrite.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx entity.name.tag.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.tag.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx keyword.operator.assignment.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx keyword.operator.assignment.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx string.quoted.double.tsx punctuation.definition.string.begin.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx string.quoted.double.tsx punctuation.definition.string.begin.tsx
|
||||
^^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx string.quoted.double.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx string.quoted.double.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx string.quoted.double.tsx punctuation.definition.string.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx string.quoted.double.tsx punctuation.definition.string.end.tsx
|
||||
^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx
|
||||
^^
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
>
|
||||
^
|
||||
source.tsx
|
|
@ -59,13 +59,13 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
> render() {
|
||||
> return <div onClick={this.stop}>
|
||||
^
|
||||
[3, 16]: source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
[3, 16]: source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
[3, 17]: source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx entity.name.tag.tsx
|
||||
[3, 17]: source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^^^^^^^
|
||||
[3, 21]: source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
[3, 21]: source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^^^^
|
||||
[3, 30]: source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx tag.open.tsx meta.brace.curly.tsx constant.language.this.tsx
|
||||
[3, 30]: source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.tag.open.tsx meta.brace.curly.tsx variable.language.this.tsx
|
||||
> This is a test: {this.state.count}
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[4, 13]: source.tsx meta.declaration.object.tsx meta.object.body.tsx meta.method.declaration.tsx meta.decl.block.tsx meta.jsx.children.tsx
|
||||
|
@ -78,106 +78,106 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
>var App =
|
||||
> <Form>
|
||||
^
|
||||
[12, 5]: source.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
[12, 5]: source.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^
|
||||
[12, 6]: source.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
[12, 6]: source.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
> <FormRow>
|
||||
^
|
||||
[13, 9]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
[13, 9]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^
|
||||
[13, 10]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
[13, 10]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
> <FormLabel data="1" />
|
||||
^
|
||||
[14, 13]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
[14, 13]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
[14, 14]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx entity.name.tag.tsx
|
||||
[14, 14]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^^^^
|
||||
[14, 24]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
[14, 24]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
[14, 30]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.double.tsx
|
||||
[14, 30]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.double.tsx
|
||||
> <FormInput data="2" />
|
||||
^
|
||||
[15, 13]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
[15, 13]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
[15, 14]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx entity.name.tag.tsx
|
||||
[15, 14]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^^^^
|
||||
[15, 24]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
[15, 24]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
[15, 30]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.double.tsx
|
||||
[15, 30]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.double.tsx
|
||||
> </FormRow>
|
||||
^^
|
||||
[16, 9]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
[16, 9]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^
|
||||
[16, 11]: source.tsx tag.without-attributes.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
[16, 11]: source.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
> </Form>
|
||||
^^
|
||||
[17, 5]: source.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
[17, 5]: source.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^
|
||||
[17, 7]: source.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
[17, 7]: source.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
>
|
||||
>var App2 = (
|
||||
> <Form>
|
||||
^
|
||||
[20, 5]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
[20, 5]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^
|
||||
[20, 6]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
[20, 6]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
> <FormRow>
|
||||
^
|
||||
[21, 9]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
[21, 9]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^
|
||||
[21, 10]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
[21, 10]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
> <FormLabel data='1' />
|
||||
^
|
||||
[22, 13]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
[22, 13]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
[22, 14]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx entity.name.tag.tsx
|
||||
[22, 14]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^^^^
|
||||
[22, 24]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
[22, 24]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
[22, 30]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.single.tsx
|
||||
[22, 30]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.single.tsx
|
||||
> <FormInput data='2' />
|
||||
^
|
||||
[23, 13]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
[23, 13]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
[23, 14]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx entity.name.tag.tsx
|
||||
[23, 14]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^^^^
|
||||
[23, 24]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
[23, 24]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^
|
||||
[23, 30]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx tag.open.tsx string.quoted.single.tsx
|
||||
[23, 30]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx string.quoted.single.tsx
|
||||
> </FormRow>
|
||||
^^
|
||||
[24, 9]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
[24, 9]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^
|
||||
[24, 11]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
[24, 11]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
> </Form>
|
||||
^^
|
||||
[25, 7]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
[25, 7]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^
|
||||
[25, 9]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
[25, 9]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
>)
|
||||
>
|
||||
>var content = (
|
||||
> <Nav>
|
||||
^
|
||||
[29, 5]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
[29, 5]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^
|
||||
[29, 6]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx entity.name.tag.tsx
|
||||
[29, 6]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx entity.name.tag.tsx
|
||||
> {/* child comment, put {} around */}
|
||||
> <Person name={window.isLoggedIn ? window.name : ''}
|
||||
^
|
||||
[31, 9]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
[31, 9]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^
|
||||
[31, 10]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx entity.name.tag.tsx
|
||||
[31, 10]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^^^^
|
||||
[31, 17]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
[31, 17]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.tag.attribute-name.tsx entity.other.attribute-name.tsx
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
[31, 23]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx meta.brace.curly.tsx
|
||||
[31, 23]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx meta.brace.curly.tsx
|
||||
> />
|
||||
^^
|
||||
[32, 9]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
[32, 9]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
> </Nav>
|
||||
^^
|
||||
[33, 5]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
[33, 5]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
>);
|
||||
>
|
||||
>// JSX Spread Attributes
|
||||
|
@ -187,42 +187,42 @@ var e = <div data-custom-attribute="^^foo" />
|
|||
>props.bar = y;
|
||||
>var component = <Component {...props} />;
|
||||
^
|
||||
[41, 17]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
[41, 17]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
[41, 18]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx entity.name.tag.tsx
|
||||
[41, 18]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^^^^^^^^
|
||||
[41, 29]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx
|
||||
[41, 29]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx
|
||||
^^
|
||||
[41, 39]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
[41, 39]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
>
|
||||
>var props2 = { foo: 'default' }
|
||||
>var component2 = <Component {...props} foo={'override'} />
|
||||
^
|
||||
[44, 18]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
[44, 18]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.begin.tsx
|
||||
^^^^^^^^^
|
||||
[44, 19]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx entity.name.tag.tsx
|
||||
[44, 19]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx entity.name.tag.tsx
|
||||
^^^^^^^^
|
||||
[44, 30]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx
|
||||
[44, 30]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx
|
||||
^^
|
||||
[44, 57]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
[44, 57]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx punctuation.definition.tag.end.tsx
|
||||
>
|
||||
>// JSX Gotchas
|
||||
>// http://facebook.github.io/react/docs/jsx-gotchas.html
|
||||
>var a = <div>{'First \u00b7 Second'}</div>
|
||||
^
|
||||
[48, 15]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
[48, 15]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
>var b = <div>{'First ' + String.fromCharCode(183) + ' Second'}</div>
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
[49, 26]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx
|
||||
[49, 26]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx
|
||||
>var c = <div>{['First ', <span>·</span>, ' Second']}</div>
|
||||
^
|
||||
[50, 26]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
[50, 26]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.without-attributes.tsx meta.brace.curly.tsx meta.array.literal.tsx meta.tag.without-attributes.tsx punctuation.definition.tag.begin.tsx
|
||||
>var d = <div dangerouslySetInnerHTML={{__html: 'First · Second'}} />
|
||||
^^^^^^^
|
||||
[51, 40]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx
|
||||
[51, 40]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx
|
||||
^
|
||||
[51, 48]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
[51, 48]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx meta.brace.curly.tsx meta.block.tsx meta.object.member.tsx string.quoted.single.tsx punctuation.definition.string.begin.tsx
|
||||
>var e = <div data-custom-attribute="foo" />
|
||||
^^^
|
||||
[52, 37]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx tag.open.tsx string.quoted.double.tsx
|
||||
[52, 37]: source.tsx meta.var.expr.tsx meta.var-single-variable.expr.tsx meta.tag.open.tsx string.quoted.double.tsx
|
||||
>
|
|
@ -6,7 +6,7 @@ original file
|
|||
|
||||
>await 1;
|
||||
^^^^^
|
||||
source.ts storage.modifier.ts
|
||||
source.ts storage.modifier.await.ts
|
||||
^
|
||||
source.ts
|
||||
^
|
||||
|
|
|
@ -6,7 +6,7 @@ original file
|
|||
|
||||
>await 1;
|
||||
^^^^^
|
||||
[1, 1]: source.ts storage.modifier.ts
|
||||
[1, 1]: source.ts storage.modifier.await.ts
|
||||
>awaiting 1;
|
||||
^^^^^^^^^
|
||||
[2, 1]: source.ts
|
|
@ -15,7 +15,7 @@ var e = Infinity;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -30,7 +30,7 @@ var e = Infinity;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -45,7 +45,7 @@ var e = Infinity;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -60,7 +60,7 @@ var e = Infinity;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -75,7 +75,7 @@ var e = Infinity;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -92,7 +92,7 @@ var e = Infinity;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -109,7 +109,7 @@ var e = Infinity;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
|
|
@ -70,7 +70,7 @@ function foo(param1: string, param2: number) {
|
|||
^^^
|
||||
source.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -78,7 +78,7 @@ function foo(param1: string, param2: number) {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts
|
||||
^
|
||||
|
@ -90,15 +90,15 @@ function foo(param1: string, param2: number) {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
|
@ -12,7 +12,7 @@ x ^^instanceof y;
|
|||
|
||||
>switch (x) {
|
||||
^^^^^^
|
||||
source.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.ts
|
||||
source.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.switch.ts
|
||||
^^
|
||||
source.ts switch-statement.expr.ts switch-expression.expr.ts
|
||||
^
|
||||
|
@ -22,14 +22,14 @@ x ^^instanceof y;
|
|||
^
|
||||
source.ts switch-statement.expr.ts
|
||||
^
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
> case 0:
|
||||
^^^^
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
^
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts
|
||||
^
|
||||
|
@ -42,35 +42,35 @@ x ^^instanceof y;
|
|||
^^^^
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
^^^^^^^
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
^
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts
|
||||
^^
|
||||
source.ts switch-statement.expr.ts switch-block.expr.ts
|
||||
>}
|
||||
^
|
||||
source.ts switch-statement.expr.ts
|
||||
source.ts switch-statement.expr.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts
|
||||
>typeof x;
|
||||
^^^^^^
|
||||
source.ts keyword.others.ts
|
||||
source.ts keyword.operator.typeof.ts
|
||||
^^^^^
|
||||
source.ts
|
||||
>void x;
|
||||
^^^^
|
||||
source.ts storage.type.ts
|
||||
source.ts keyword.operator.void.ts
|
||||
^^^^^
|
||||
source.ts
|
||||
>delete x.y;
|
||||
^^^^^^
|
||||
source.ts keyword.others.ts
|
||||
source.ts keyword.operator.delete.ts
|
||||
^^^^^^^
|
||||
source.ts
|
||||
>x instanceof y;
|
||||
^^
|
||||
source.ts
|
||||
^^^^^^^^^^
|
||||
source.ts keyword.others.ts
|
||||
source.ts keyword.operator.instanceof.ts
|
||||
^^^^
|
||||
source.ts
|
|
@ -12,23 +12,23 @@ x ^^instanceof y;
|
|||
|
||||
>switch (x) {
|
||||
^^^^^^
|
||||
[1, 1]: source.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.ts
|
||||
[1, 1]: source.ts switch-statement.expr.ts switch-expression.expr.ts keyword.control.switch.ts
|
||||
> case 0:
|
||||
^^^^
|
||||
[2, 5]: source.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
[2, 5]: source.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
> default:
|
||||
^^^^^^^
|
||||
[3, 5]: source.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.ts
|
||||
[3, 5]: source.ts switch-statement.expr.ts switch-block.expr.ts case-clause.expr.ts keyword.control.switch.ts
|
||||
>}
|
||||
>typeof x;
|
||||
^^^^^^
|
||||
[5, 1]: source.ts keyword.others.ts
|
||||
[5, 1]: source.ts keyword.operator.typeof.ts
|
||||
>void x;
|
||||
^^^^
|
||||
[6, 1]: source.ts storage.type.ts
|
||||
[6, 1]: source.ts keyword.operator.void.ts
|
||||
>delete x.y;
|
||||
^^^^^^
|
||||
[7, 1]: source.ts keyword.others.ts
|
||||
[7, 1]: source.ts keyword.operator.delete.ts
|
||||
>x instanceof y;
|
||||
^^^^^^^^^^
|
||||
[8, 3]: source.ts keyword.others.ts
|
||||
[8, 3]: source.ts keyword.operator.instanceof.ts
|
|
@ -14,22 +14,22 @@ var ^^obj = {
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
>var a1 = 1, b1 = function (x) { return 1; }, c1 = "string"
|
||||
^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts storage.type.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -39,7 +39,7 @@ var ^^obj = {
|
|||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -49,19 +49,19 @@ var ^^obj = {
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
|
@ -69,11 +69,11 @@ var ^^obj = {
|
|||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -90,17 +90,17 @@ var ^^obj = {
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.comparison.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -112,43 +112,45 @@ var ^^obj = {
|
|||
^^
|
||||
source.ts meta.var.expr.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^^
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.paren.cover.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.paren.cover.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.function.return.ts keyword.operator.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.function.return.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.function.return.ts
|
||||
^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.function.return.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.comparison.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts keyword.operator.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts punctuation.definition.block.ts
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts string.quoted.double.ts punctuation.definition.string.begin.ts
|
||||
^^^^^
|
||||
|
@ -156,21 +158,21 @@ var ^^obj = {
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts string.quoted.double.ts punctuation.definition.string.end.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^
|
||||
|
@ -178,7 +180,7 @@ var ^^obj = {
|
|||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts
|
||||
>var obj = {
|
||||
|
@ -187,13 +189,13 @@ var ^^obj = {
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts punctuation.definition.block.ts
|
||||
> foo: "10"
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts
|
||||
|
@ -209,11 +211,11 @@ var ^^obj = {
|
|||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.object.member.ts string.quoted.double.ts punctuation.definition.string.end.ts
|
||||
>}, other = 10;
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.block.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
|
|
@ -10,29 +10,29 @@ var ^^obj = {
|
|||
|
||||
>var a, b, c
|
||||
^
|
||||
[1, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[1, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
[1, 8]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[1, 8]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^
|
||||
[1, 11]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[1, 11]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
>var a1 = 1, b1 = function (x) { return 1; }, c1 = "string"
|
||||
^^
|
||||
[2, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[2, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
[2, 13]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[2, 13]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
[2, 46]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[2, 46]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
>var a2: string = "test", b2: () => void = () => { console.log("hello"); }, c2: string | number;
|
||||
^^
|
||||
[3, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[3, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
[3, 26]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[3, 26]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
[3, 76]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[3, 76]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
>var obj = {
|
||||
^^^
|
||||
[4, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[4, 5]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
> foo: "10"
|
||||
>}, other = 10;
|
||||
^^^^^
|
||||
[6, 4]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[6, 4]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
|
@ -13,11 +13,11 @@ declare ^^module "x" {}
|
|||
^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts
|
||||
>module ts { }
|
||||
|
@ -26,16 +26,16 @@ declare ^^module "x" {}
|
|||
^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts
|
||||
>declare namespace ts {}
|
||||
^^^^^^^
|
||||
source.ts keyword.control.ts
|
||||
source.ts storage.modifier.ts
|
||||
^
|
||||
source.ts
|
||||
^^^^^^^^^
|
||||
|
@ -43,14 +43,14 @@ declare ^^module "x" {}
|
|||
^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts
|
||||
>declare module ts {}
|
||||
^^^^^^^
|
||||
source.ts keyword.control.ts
|
||||
source.ts storage.modifier.ts
|
||||
^
|
||||
source.ts
|
||||
^^^^^^
|
||||
|
@ -58,14 +58,14 @@ declare ^^module "x" {}
|
|||
^^^^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^^
|
||||
source.ts
|
||||
>declare module "x" {}
|
||||
^^^^^^^
|
||||
source.ts keyword.control.ts
|
||||
source.ts storage.modifier.ts
|
||||
^
|
||||
source.ts
|
||||
^^^^^^
|
||||
|
@ -81,6 +81,6 @@ declare ^^module "x" {}
|
|||
^
|
||||
source.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.block.ts punctuation.definition.block.ts
|
|
@ -19,7 +19,7 @@ var k = 1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -34,7 +34,7 @@ var k = 1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -49,7 +49,7 @@ var k = 1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -64,7 +64,7 @@ var k = 1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -83,7 +83,7 @@ var k = 1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -102,7 +102,7 @@ var k = 1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -119,7 +119,7 @@ var k = 1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -134,7 +134,7 @@ var k = 1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -153,7 +153,7 @@ var k = 1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -170,7 +170,7 @@ var k = 1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -187,7 +187,7 @@ var k = 1;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^
|
||||
|
|
|
@ -25,7 +25,7 @@ class Test {
|
|||
|
||||
>class Test {
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts storage.type.ts
|
||||
source.ts meta.declaration.object.ts storage.type.class.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^^^^
|
||||
|
@ -33,7 +33,7 @@ class Test {
|
|||
^
|
||||
source.ts meta.declaration.object.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
> private data: TemplateData[] = []
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -42,7 +42,7 @@ class Test {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
|
@ -52,7 +52,7 @@ class Test {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
|
@ -67,17 +67,17 @@ class Test {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^^^^^^^^^^^^^^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts punctuation.definition.block.ts
|
||||
> private state = {}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts
|
||||
|
@ -86,20 +86,20 @@ class Test {
|
|||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^^^^^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts keyword.operator.relational.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts punctuation.definition.block.ts
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts meta.block.ts punctuation.definition.block.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts meta.brace.curly.ts
|
||||
source.ts meta.declaration.object.ts meta.object.body.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -109,15 +109,15 @@ class Test {
|
|||
^
|
||||
source.ts
|
||||
^^^^
|
||||
source.ts meta.type.declaration.ts keyword.other.ts
|
||||
source.ts meta.type.declaration.ts storage.type.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^^^^
|
||||
source.ts meta.type.declaration.ts entity.name.class.ts
|
||||
source.ts meta.type.declaration.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.type.declaration.ts
|
||||
^^
|
||||
source.ts meta.type.declaration.ts keyword.operator.comparison.ts
|
||||
source.ts meta.type.declaration.ts keyword.operator.assignment.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.type.declaration.ts meta.type.name.ts
|
||||
>export const touch = thenify(tch)
|
||||
|
@ -130,17 +130,17 @@ class Test {
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -157,7 +157,7 @@ class Test {
|
|||
source.ts comment.block.documentation.ts punctuation.definition.comment.ts
|
||||
>export function isFile(path: string): Promise<boolean> {
|
||||
^^^^^^
|
||||
source.ts meta.function.ts storage.type.ts
|
||||
source.ts meta.function.ts keyword.control.export.ts
|
||||
^
|
||||
source.ts meta.function.ts
|
||||
^^^^^^^^
|
||||
|
@ -167,7 +167,7 @@ class Test {
|
|||
^^^^^^
|
||||
source.ts meta.function.ts entity.name.function.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.begin.ts
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts parameter.name.ts variable.parameter.ts
|
||||
^
|
||||
|
@ -175,9 +175,9 @@ class Test {
|
|||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.type.annotation.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts meta.brace.round.ts
|
||||
source.ts meta.function.ts meta.function.type.parameter.ts punctuation.definition.parameters.end.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts
|
||||
^
|
||||
|
@ -185,61 +185,61 @@ class Test {
|
|||
^^^^^^^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.return.type.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
> return stat(path).then(stat => stat.isFile(), () => false)
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.operator.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts storage.type.function.arrow.ts
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.round.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^^
|
||||
source.ts meta.function.ts meta.decl.block.ts keyword.operator.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts storage.type.function.arrow.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts
|
||||
^^^^^
|
||||
source.ts meta.function.ts meta.decl.block.ts constant.language.boolean.false.ts
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.paren.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.round.ts
|
||||
>}
|
||||
^
|
||||
source.ts meta.function.ts meta.decl.block.ts meta.brace.curly.ts
|
||||
source.ts meta.function.ts meta.decl.block.ts punctuation.definition.block.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
@ -256,7 +256,7 @@ class Test {
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -264,25 +264,25 @@ class Test {
|
|||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
>export const writeFile = thenify<string, string | Buffer, void>(fs.writeFile)
|
||||
^^^^^^
|
||||
source.ts storage.type.ts
|
||||
|
@ -293,7 +293,7 @@ class Test {
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -301,13 +301,13 @@ class Test {
|
|||
^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts entity.name.type.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.brace.angle.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts
|
||||
^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts
|
||||
^
|
||||
|
@ -319,15 +319,15 @@ class Test {
|
|||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts
|
||||
^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
^^^^^^^^^^^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.paren.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.brace.round.ts
|
||||
>
|
||||
^
|
||||
source.ts
|
||||
|
|
|
@ -28,47 +28,47 @@ class Test {
|
|||
^^^^^^^
|
||||
[2, 2]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^^^^
|
||||
[2, 10]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
[2, 10]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
> private options: TemplateOptions = {}
|
||||
^^^^^^^
|
||||
[3, 2]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^^^^^^^
|
||||
[3, 10]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
[3, 10]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
> private state = {}
|
||||
^^^^^^^
|
||||
[4, 2]: source.ts meta.declaration.object.ts meta.object.body.ts storage.modifier.ts
|
||||
^^^^^
|
||||
[4, 10]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.ts
|
||||
[4, 10]: source.ts meta.declaration.object.ts meta.object.body.ts meta.field.declaration.ts variable.object.property.ts
|
||||
>}
|
||||
>
|
||||
>export type Stats = fs.Stats
|
||||
^^^^^^
|
||||
[7, 1]: source.ts storage.type.ts
|
||||
^^^^
|
||||
[7, 8]: source.ts meta.type.declaration.ts keyword.other.ts
|
||||
[7, 8]: source.ts meta.type.declaration.ts storage.type.type.ts
|
||||
^^^^^
|
||||
[7, 13]: source.ts meta.type.declaration.ts entity.name.class.ts
|
||||
[7, 13]: source.ts meta.type.declaration.ts entity.name.type.ts
|
||||
>export const touch = thenify(tch)
|
||||
^^^^^^
|
||||
[8, 1]: source.ts storage.type.ts
|
||||
^^^^^
|
||||
[8, 8]: source.ts meta.var.expr.ts storage.type.ts
|
||||
^^^^^
|
||||
[8, 14]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
[8, 14]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
>
|
||||
>/**
|
||||
> * Verify comments
|
||||
> */
|
||||
>export function isFile(path: string): Promise<boolean> {
|
||||
^^^^^^
|
||||
[13, 1]: source.ts meta.function.ts storage.type.ts
|
||||
[13, 1]: source.ts meta.function.ts keyword.control.export.ts
|
||||
^^^^^^^^
|
||||
[13, 8]: source.ts meta.function.ts storage.type.function.ts
|
||||
^^^^^^^
|
||||
[13, 39]: source.ts meta.function.ts meta.return.type.ts meta.type.parameters.ts entity.name.type.ts
|
||||
> return stat(path).then(stat => stat.isFile(), () => false)
|
||||
^^^^^^
|
||||
[14, 2]: source.ts meta.function.ts meta.decl.block.ts keyword.control.ts
|
||||
[14, 2]: source.ts meta.function.ts meta.decl.block.ts keyword.control.flow.ts
|
||||
>}
|
||||
>
|
||||
>
|
||||
|
@ -78,13 +78,13 @@ class Test {
|
|||
^^^^^
|
||||
[18, 8]: source.ts meta.var.expr.ts storage.type.ts
|
||||
^^^^^^
|
||||
[18, 33]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[18, 33]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>export const writeFile = thenify<string, string | Buffer, void>(fs.writeFile)
|
||||
^^^^^^
|
||||
[19, 1]: source.ts storage.type.ts
|
||||
^^^^^
|
||||
[19, 8]: source.ts meta.var.expr.ts storage.type.ts
|
||||
^^^^^^
|
||||
[19, 34]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.ts
|
||||
[19, 34]: source.ts meta.var.expr.ts meta.var-single-variable.expr.ts meta.type.parameters.ts meta.type.primitive.ts support.type.primitive.ts
|
||||
>
|
||||
>
|
|
@ -10,7 +10,7 @@ var x = /\s*\b(async\s+)?function\b/g;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
@ -59,7 +59,7 @@ var x = /\s*\b(async\s+)?function\b/g;
|
|||
^
|
||||
source.ts meta.var.expr.ts
|
||||
^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.ts
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts variable.other.readwrite.ts
|
||||
^^
|
||||
source.ts meta.var.expr.ts meta.var-single-variable.expr.ts
|
||||
^
|
||||
|
|
Загрузка…
Ссылка в новой задаче