VariableStatement is a top level declaration of a variable var foo: string = "bar" const foo: string = "bar"
| 102 | // var foo: string = "bar" |
| 103 | // const foo: string = "bar" |
| 104 | type VariableStatement struct { |
| 105 | Modifiers []Modifier |
| 106 | Declarations *VariableDeclarationList |
| 107 | Source |
| 108 | SupportComments |
| 109 | } |
| 110 | |
| 111 | func (*VariableStatement) isNode() {} |
| 112 | func (*VariableStatement) isDeclarationType() {} |
nothing calls this directly
no outgoing calls
no test coverage detected