9 lines
258 B
Go
9 lines
258 B
Go
|
package parser
|
||
|
|
||
|
// SyntaxTree represents an abstract syntax tree. It covers an entire module. It
|
||
|
// can be expected to be syntactically correct, but it might not be semantically
|
||
|
// correct (because it has not been analyzed yet.)
|
||
|
type SyntaxTree struct {
|
||
|
|
||
|
}
|