* Whitespace token modernization - ambient lexer * Whitespace token modernization - ampl lexer * Whitespace token modernization - apdlexer lexer * Whitespace token modernization - apl lexer * Whitespace token modernization - adl lexer * Whitespace token modernization - arrow lexer * Whitespace token modernization - asm lexer
47 lines
1.2 KiB
Text
Generated
47 lines
1.2 KiB
Text
Generated
'def' Keyword
|
|
' ' Text.Whitespace
|
|
'me' Name.Variable
|
|
' ' Text.Whitespace
|
|
':=' Operator
|
|
' ' Text.Whitespace
|
|
'object:' Name.Builtin
|
|
' ' Text.Whitespace
|
|
'{' Punctuation
|
|
'\n ' Text.Whitespace
|
|
'def' Keyword
|
|
' ' Text.Whitespace
|
|
'name' Name.Variable
|
|
' ' Text.Whitespace
|
|
':=' Operator
|
|
' ' Text.Whitespace
|
|
'"Kevin"' Literal.String
|
|
';' Punctuation
|
|
'\n ' Text.Whitespace
|
|
'def' Keyword
|
|
' ' Text.Whitespace
|
|
'sayHello' Name.Variable
|
|
'(' Punctuation
|
|
'peerName' Name.Variable
|
|
')' Punctuation
|
|
' ' Text.Whitespace
|
|
'{' Punctuation
|
|
'\n ' Text.Whitespace
|
|
'system' Name.Variable
|
|
'.' Operator
|
|
'println' Name.Variable
|
|
'(' Punctuation
|
|
'peerName' Name.Variable
|
|
' ' Text.Whitespace
|
|
'+' Operator
|
|
' ' Text.Whitespace
|
|
'" says hello!"' Literal.String
|
|
')' Punctuation
|
|
';' Punctuation
|
|
'\n ' Text.Whitespace
|
|
'}' Punctuation
|
|
';' Punctuation
|
|
'\n' Text.Whitespace
|
|
|
|
'}' Punctuation
|
|
';' Punctuation
|
|
'\n' Text.Whitespace
|