aboutsummaryrefslogtreecommitdiff
path: root/tests/expr-base.test
AgeCommit message (Collapse)AuthorFilesLines
2020-09-23core: implement 0d radix prefix for decimalD. Bohdan1-0/+7
TIP 472
2016-10-11Separate out Jim specific testsEvan Hunter1-2/+6
2012-08-07Remove octal literals with a leading 0 (TIP #114)Steve Bennett1-0/+39
Now an octal literal needs to be explicitly indicated with a leading 0o or 0O, otherwise the number is treated as decimal. This patch also adds support for binary literals. e.g. 0b101 0B1101 Signed-off-by: Steve Bennett <steveb@workware.net.au>