mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 04:02:41 +00:00
Merge pull request #3000 from apense/patch-6
Clarified nnkFloat64Lit. Fixes #2939
This commit is contained in:
@@ -51,7 +51,8 @@ a child can never be nil.
|
||||
Leaf nodes/Atoms
|
||||
================
|
||||
A leaf of the AST often corresponds to a terminal symbol in the concrete
|
||||
syntax.
|
||||
syntax. Note that the default ``float`` in Nim maps to ``float64`` such that
|
||||
the default AST for a float is ``nnkFloat64Lit`` as below.
|
||||
|
||||
----------------- ---------------------------------------------
|
||||
Nim expression Corresponding AST
|
||||
@@ -65,7 +66,7 @@ Nim expression Corresponding AST
|
||||
``42'u16`` ``nnkUInt16Lit(intVal = 42)``
|
||||
``42'u32`` ``nnkUInt32Lit(intVal = 42)``
|
||||
``42'u64`` ``nnkUInt64Lit(intVal = 42)``
|
||||
``42.0`` ``nnkFloatLit(floatVal = 42.0)``
|
||||
``42.0`` ``nnkFloat64Lit(floatVal = 42.0)``
|
||||
``42.0'f32`` ``nnkFloat32Lit(floatVal = 42.0)``
|
||||
``42.0'f64`` ``nnkFloat64Lit(floatVal = 42.0)``
|
||||
``"abc"`` ``nnkStrLit(strVal = "abc")``
|
||||
|
||||
Reference in New Issue
Block a user