diff options
Diffstat (limited to 'docs/compiler-api.md')
-rw-r--r-- | docs/compiler-api.md | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/docs/compiler-api.md b/docs/compiler-api.md index c09414f..abf8373 100644 --- a/docs/compiler-api.md +++ b/docs/compiler-api.md @@ -83,7 +83,19 @@ interface PartialStatement <: Statement { name: PathExpression | SubExpression; params: [ Expression ]; hash: Hash; - + + indent: string; + strip: StripFlags | null; +} + +interface PartialBlockStatement <: Statement { + type: "PartialBlockStatement"; + name: PathExpression | SubExpression; + params: [ Expression ]; + hash: Hash; + + program: Program | null; + indent: string; strip: StripFlags | null; } |