diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-06-17 20:51:28 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-06-17 20:51:28 +0200 |
commit | ef762c6ef09e7e028e980034a0833de4d0a1227c (patch) | |
tree | e97922971ea9f9824e4a9d51d564ff63e362594c /doc | |
parent | 59a2d3b8143c4632ba2e4fe437bfb49d625cd0f2 (diff) | |
parent | 68aa6309e4dcc2a2cdb96593cc345c4e43a7c717 (diff) | |
download | Nim-ef762c6ef09e7e028e980034a0833de4d0a1227c.tar.gz |
Merge pull request #2938 from apense/patch-4
Added uints to Leaf nodes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/astspec.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/astspec.txt b/doc/astspec.txt index 7514838da..596d07bab 100644 --- a/doc/astspec.txt +++ b/doc/astspec.txt @@ -60,6 +60,10 @@ Nim expression Corresponding AST ``42'i16`` ``nnkInt16Lit(intVal = 42)`` ``42'i32`` ``nnkInt32Lit(intVal = 42)`` ``42'i64`` ``nnkInt64Lit(intVal = 42)`` +``42'u8`` ``nnkUInt8Lit(intVal = 42)`` +``42'u16`` ``nnkUInt16Lit(intVal = 42)`` +``42'u32`` ``nnkUInt32Lit(intVal = 42)`` +``42'u64`` ``nnkUInt64Lit(intVal = 42)`` ``42.0`` ``nnkFloatLit(floatVal = 42.0)`` ``42.0'f32`` ``nnkFloat32Lit(floatVal = 42.0)`` ``42.0'f64`` ``nnkFloat64Lit(floatVal = 42.0)`` |