1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-03-19 21:10:15 +02:00

Remove unintended changes

This commit is contained in:
Pedro Loureiro 2020-08-11 11:38:31 +01:00 committed by Alec Thomas
parent aac329441b
commit 86ebaf326b

View File

@ -50,10 +50,6 @@ var Kotlin = internal.Register(MustNewLexer(
{"(@?[" + kotlinIdentifier + " ]*`)", NameProperty, Pop(1)},
},
"function": {
{`[~!%^&*()+=|\[\]:;,.<>\/?-]`, Punctuation, nil},
{`(abstract|actual|annotation|as|as\?|break|by|catch|class|companion|const|constructor|continue|crossinline|data|delegate|do|dynamic|else|enum|expect|external|false|field|file|final|finally|for|fun|get|if|import|in|infix|init|inline|inner|interface|internal|is|it|lateinit|noinline|null|object|open|operator|out|override|package|param|private|property|protected|public|receiver|reified|return|sealed|set|setparam|super|suspend|tailrec|this|throw|true|try|typealias|typeof|val|var|vararg|when|where|while)\b`, Keyword, nil},
{"(@?[" + kotlinIdentifier + " ]*`)", NameFunction, Pop(1)},
},
},