added system.typed and system.untyped aliases

This commit is contained in:
Araq
2015-04-07 00:06:39 +02:00
parent 5bb3534f10
commit 82f8948a10
4 changed files with 12 additions and 6 deletions

View File

@@ -76,6 +76,10 @@ type
void* {.magic: "VoidType".} ## meta type to denote the absence of any type
auto* = expr
any* = distinct auto
untyped* {.magic: Expr.} ## meta type to denote an expression that
## is not resolved (for templates)
typed* {.magic: Stmt.} ## meta type to denote an expression that
## is resolved (for templates)
SomeSignedInt* = int|int8|int16|int32|int64
## type class matching all signed integer types