1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-04-02 22:15:29 +02:00

10 Commits

Author SHA1 Message Date
Guillaume Corré
175c35e532 Handle enclosing backtick in Kotlin lexer for identifiers, close 2021-10-23 08:50:29 +11:00
Nelo Mitranim
fb1dd01cfb [kotlin] expensive char list -> char classes
This reduces the lexer's init time by about x1000, from ≈350ms to ≈350μs
on my machine.
2021-07-31 19:07:24 +10:00
Cameron Moore
59126c5b32
Add NewLazyLexer to defer rules definitions and reduce init costs ()
Add NewLazyLexer and MustNewLazyLexer which accept a function that
returns the rules for the lexer.  This allows us to defer the rules
definitions until they're needed.

Lexers in a, g, s, and x packages have been updated to use the new lazy
lexer.
2021-02-08 12:16:49 +11:00
Pedro Loureiro
fb0b720d14
Kotlin improvements around string interpolation, escaping, and generics () 2020-08-28 10:26:29 +10:00
Pedro Loureiro
86ebaf326b Remove unintended changes 2020-08-12 09:04:18 +10:00
Pedro Loureiro
aac329441b Fix regex from as? to as\?; add one more test case for !== 2020-08-12 09:04:18 +10:00
Pedro Loureiro
8a54f9ea89 add many operators to kotlin 2020-08-12 09:04:18 +10:00
Pedro Loureiro
8d0d2b8e55 Add more keywords to kotlin lexer 2020-08-12 09:04:18 +10:00
Victor Kropp
b5ccb8dc32 Improve numbers parsing in Kotlin 2019-02-09 10:23:20 +11:00
Alec Thomas
563aadc53c Moved lexers into alphabetical sub-packages.
This was done to speed up incremental compilation when working on
lexers. That is, modifying a single lexer will no longer require
recompiling all lexers.

This is a (slightly) backwards breaking change in that lexers are no
longer exported directly in the lexers package. The registry API is
"aliased" at the old location.
2018-02-15 21:09:02 +11:00