Reorganize tests into a real spec suite

This commit is contained in:
2024-08-04 19:18:43 -03:00
parent 57c160173c
commit e7c2053222
693 changed files with 136 additions and 116 deletions

View File

@ -0,0 +1,52 @@
---input---
// Test literals that should be tokenized as float literals.
1
1.
.1
1.1
1e1
1E1
1e+1
1E-1
1.e1
1e1
0888 // octal prefix with non-octal numbers
---tokens---
'' Text
'// Test literals that should be tokenized as float literals.' Comment.Single
'\n' Text.Whitespace
'1' Literal.Number.Float
'\n' Text.Whitespace
'1.' Literal.Number.Float
'\n ' Text.Whitespace
'.1' Literal.Number.Float
'\n' Text.Whitespace
'1.1' Literal.Number.Float
'\n' Text.Whitespace
'1e1' Literal.Number.Float
'\n' Text.Whitespace
'1E1' Literal.Number.Float
'\n' Text.Whitespace
'1e+1' Literal.Number.Float
'\n' Text.Whitespace
'1E-1' Literal.Number.Float
'\n' Text.Whitespace
'1.e1' Literal.Number.Float
'\n' Text.Whitespace
'1e1' Literal.Number.Float
'\n' Text.Whitespace
'0888' Literal.Number.Float
' ' Text.Whitespace
'// octal prefix with non-octal numbers' Comment.Single
'\n' Text.Whitespace