Module syntax. doesn't really do anything yet. well, it groups definitions
This commit is contained in:
parent
d3248be4d9
commit
ed103ed2cb
3 changed files with 77 additions and 50 deletions
|
|
@ -147,6 +147,7 @@ export type Definition = {
|
|||
column?: number
|
||||
start?: number
|
||||
annotation?: Annotation
|
||||
module?: string
|
||||
}
|
||||
|
||||
export type Rebind = {
|
||||
|
|
@ -175,6 +176,7 @@ export type TypeDefinition = {
|
|||
line?: number
|
||||
column?: number
|
||||
start?: number
|
||||
module?: string
|
||||
}
|
||||
|
||||
export type Annotation = {
|
||||
|
|
@ -195,6 +197,7 @@ export type ClassDefinition = {
|
|||
line?: number
|
||||
column?: number
|
||||
start?: number
|
||||
module?: string
|
||||
}
|
||||
|
||||
export type InstanceDeclaration = {
|
||||
|
|
@ -204,6 +207,7 @@ export type InstanceDeclaration = {
|
|||
line?: number
|
||||
column?: number
|
||||
start?: number
|
||||
module?: string
|
||||
}
|
||||
|
||||
export type AST =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue