MCPcopy Create free account
hub / github.com/coder/guts / VariableStatement

Struct VariableStatement

bindings/declarations.go:104–109  ·  view source on GitHub ↗

VariableStatement is a top level declaration of a variable var foo: string = "bar" const foo: string = "bar"

Source from the content-addressed store, hash-verified

102// var foo: string = "bar"
103// const foo: string = "bar"
104type VariableStatement struct {
105 Modifiers []Modifier
106 Declarations *VariableDeclarationList
107 Source
108 SupportComments
109}
110
111func (*VariableStatement) isNode() {}
112func (*VariableStatement) isDeclarationType() {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected