mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-07-01 20:37:08 -03:00
Compare commits
55 Commits
Author | SHA1 | Date | |
---|---|---|---|
fff6cad5ac | |||
44e6af8546 | |||
9e2585a875 | |||
c16b139fa3 | |||
e11775040c | |||
30bc8cccba | |||
1638c253cb | |||
c374f52aee | |||
96fd9bdfe9 | |||
0423811c5d | |||
3d9d3ab5cf | |||
92a97490f1 | |||
22decedf3a | |||
8b34a1659d | |||
3bf8172b89 | |||
4432da2893 | |||
6a6827f26a | |||
766f9b4708 | |||
9d49ff78d6 | |||
fb924543a0 | |||
09d4b7b02e | |||
08e81683ca | |||
9c70fbf389 | |||
d26393d8c9 | |||
c95658320c | |||
ca988defc1 | |||
687c6c81df | |||
ac8b7e3800 | |||
e288a55812 | |||
11cb5fc48e | |||
bf2f08c1d0 | |||
84980459cf | |||
c011bd8347 | |||
6a38f2f5fb | |||
c4a2d1a752 | |||
358be51e27 | |||
2cff0fea48 | |||
40202eb2d6 | |||
3ed4a7eab8 | |||
6f797f999a | |||
b762307660 | |||
eb0cc089a9 | |||
88f2aace20 | |||
fe943fa399 | |||
08f8138e05 | |||
3c0b3c38e2 | |||
a1318501a5 | |||
daf24189bf | |||
3d3f9fcc24 | |||
a583b7359e | |||
de2a4a1996 | |||
31334ac802 | |||
6d64491938 | |||
fb693bb221 | |||
c6824a99df |
111
.ameba.yml
111
.ameba.yml
@ -1,9 +1,9 @@
|
|||||||
# This configuration file was generated by `ameba --gen-config`
|
# This configuration file was generated by `ameba --gen-config`
|
||||||
# on 2024-08-12 22:00:49 UTC using Ameba version 1.6.1.
|
# on 2024-09-21 14:59:30 UTC using Ameba version 1.6.1.
|
||||||
# The point is for the user to remove these configuration records
|
# The point is for the user to remove these configuration records
|
||||||
# one by one as the reported problems are removed from the code base.
|
# one by one as the reported problems are removed from the code base.
|
||||||
|
|
||||||
# Problems found: 2
|
# Problems found: 3
|
||||||
# Run `ameba --only Documentation/DocumentationAdmonition` for details
|
# Run `ameba --only Documentation/DocumentationAdmonition` for details
|
||||||
Documentation/DocumentationAdmonition:
|
Documentation/DocumentationAdmonition:
|
||||||
Description: Reports documentation admonitions
|
Description: Reports documentation admonitions
|
||||||
@ -18,104 +18,17 @@ Documentation/DocumentationAdmonition:
|
|||||||
Enabled: true
|
Enabled: true
|
||||||
Severity: Warning
|
Severity: Warning
|
||||||
|
|
||||||
# Problems found: 22
|
|
||||||
# Run `ameba --only Lint/MissingBlockArgument` for details
|
|
||||||
Lint/MissingBlockArgument:
|
|
||||||
Description: Disallows yielding method definitions without block argument
|
|
||||||
Excluded:
|
|
||||||
- pygments/tests/examplefiles/cr/test.cr
|
|
||||||
Enabled: true
|
|
||||||
Severity: Warning
|
|
||||||
|
|
||||||
# Problems found: 1
|
# Problems found: 1
|
||||||
# Run `ameba --only Lint/NotNil` for details
|
# Run `ameba --only Lint/SpecFilename` for details
|
||||||
Lint/NotNil:
|
Lint/SpecFilename:
|
||||||
Description: Identifies usage of `not_nil!` calls
|
Description: Enforces spec filenames to have `_spec` suffix
|
||||||
Excluded:
|
Excluded:
|
||||||
- pygments/tests/examplefiles/cr/test.cr
|
- spec/examples/crystal/hello.cr
|
||||||
|
IgnoredDirs:
|
||||||
|
- spec/support
|
||||||
|
- spec/fixtures
|
||||||
|
- spec/data
|
||||||
|
IgnoredFilenames:
|
||||||
|
- spec_helper
|
||||||
Enabled: true
|
Enabled: true
|
||||||
Severity: Warning
|
Severity: Warning
|
||||||
|
|
||||||
# Problems found: 34
|
|
||||||
# Run `ameba --only Lint/ShadowingOuterLocalVar` for details
|
|
||||||
Lint/ShadowingOuterLocalVar:
|
|
||||||
Description: Disallows the usage of the same name as outer local variables for block
|
|
||||||
or proc arguments
|
|
||||||
Excluded:
|
|
||||||
- pygments/tests/examplefiles/cr/test.cr
|
|
||||||
Enabled: true
|
|
||||||
Severity: Warning
|
|
||||||
|
|
||||||
# Problems found: 1
|
|
||||||
# Run `ameba --only Lint/UnreachableCode` for details
|
|
||||||
Lint/UnreachableCode:
|
|
||||||
Description: Reports unreachable code
|
|
||||||
Excluded:
|
|
||||||
- pygments/tests/examplefiles/cr/test.cr
|
|
||||||
Enabled: true
|
|
||||||
Severity: Warning
|
|
||||||
|
|
||||||
# Problems found: 6
|
|
||||||
# Run `ameba --only Lint/UselessAssign` for details
|
|
||||||
Lint/UselessAssign:
|
|
||||||
Description: Disallows useless variable assignments
|
|
||||||
ExcludeTypeDeclarations: false
|
|
||||||
Excluded:
|
|
||||||
- pygments/tests/examplefiles/cr/test.cr
|
|
||||||
Enabled: true
|
|
||||||
Severity: Warning
|
|
||||||
|
|
||||||
# Problems found: 3
|
|
||||||
# Run `ameba --only Naming/BlockParameterName` for details
|
|
||||||
Naming/BlockParameterName:
|
|
||||||
Description: Disallows non-descriptive block parameter names
|
|
||||||
MinNameLength: 3
|
|
||||||
AllowNamesEndingInNumbers: true
|
|
||||||
Excluded:
|
|
||||||
- pygments/tests/examplefiles/cr/test.cr
|
|
||||||
AllowedNames:
|
|
||||||
- _
|
|
||||||
- e
|
|
||||||
- i
|
|
||||||
- j
|
|
||||||
- k
|
|
||||||
- v
|
|
||||||
- x
|
|
||||||
- y
|
|
||||||
- ex
|
|
||||||
- io
|
|
||||||
- ws
|
|
||||||
- op
|
|
||||||
- tx
|
|
||||||
- id
|
|
||||||
- ip
|
|
||||||
- k1
|
|
||||||
- k2
|
|
||||||
- v1
|
|
||||||
- v2
|
|
||||||
ForbiddenNames: []
|
|
||||||
Enabled: true
|
|
||||||
Severity: Convention
|
|
||||||
|
|
||||||
# Problems found: 1
|
|
||||||
# Run `ameba --only Naming/RescuedExceptionsVariableName` for details
|
|
||||||
Naming/RescuedExceptionsVariableName:
|
|
||||||
Description: Makes sure that rescued exceptions variables are named as expected
|
|
||||||
Excluded:
|
|
||||||
- pygments/tests/examplefiles/cr/test.cr
|
|
||||||
AllowedNames:
|
|
||||||
- e
|
|
||||||
- ex
|
|
||||||
- exception
|
|
||||||
- error
|
|
||||||
Enabled: true
|
|
||||||
Severity: Convention
|
|
||||||
|
|
||||||
# Problems found: 6
|
|
||||||
# Run `ameba --only Naming/TypeNames` for details
|
|
||||||
Naming/TypeNames:
|
|
||||||
Description: Enforces type names in camelcase manner
|
|
||||||
Excluded:
|
|
||||||
- pygments/tests/examplefiles/cr/test.cr
|
|
||||||
Enabled: true
|
|
||||||
Severity: Convention
|
|
||||||
|
26
.github/workflows/ci.yml
vendored
Normal file
26
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: Tests
|
||||||
|
on:
|
||||||
|
# This can't yet run automatically, because tests fail because of
|
||||||
|
# different versions of chroma. Need to get the same one in my
|
||||||
|
# local env and in CI
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Download source
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Crystal
|
||||||
|
uses: crystal-lang/install-crystal@v1
|
||||||
|
- name: Run tests
|
||||||
|
run: |
|
||||||
|
wget https://github.com/alecthomas/chroma/releases/download/v2.14.0/chroma-2.14.0-linux-amd64.tar.gz
|
||||||
|
tar xzvf chroma-2.14.0*gz
|
||||||
|
mkdir ~/.local/bin -p
|
||||||
|
sudo mv chroma ~/.local/bin
|
||||||
|
shards install
|
||||||
|
crystal tool format --check
|
||||||
|
crystal spec -v
|
30
.github/workflows/coverage.yml
vendored
Normal file
30
.github/workflows/coverage.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
name: Coverage
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 1 * * *"
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Download source
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Crystal
|
||||||
|
uses: crystal-lang/install-crystal@v1
|
||||||
|
- name: Run tests using kcov
|
||||||
|
run: |
|
||||||
|
sudo apt update && sudo apt install kcov
|
||||||
|
wget https://github.com/alecthomas/chroma/releases/download/v2.14.0/chroma-2.14.0-linux-amd64.tar.gz
|
||||||
|
tar xzvf chroma-2.14.0*gz
|
||||||
|
mkdir ~/.local/bin -p
|
||||||
|
sudo mv chroma ~/.local/bin
|
||||||
|
shards install
|
||||||
|
crystal build src/run_tests.cr
|
||||||
|
kcov --clean --include-path=./src $PWD/coverage ./run_tests
|
||||||
|
curl -Os https://uploader.codecov.io/latest/linux/codecov
|
||||||
|
chmod +x codecov
|
||||||
|
./codecov -t ${CODECOV_TOKEN} -s coverage
|
||||||
|
env:
|
||||||
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -9,3 +9,6 @@ shard.lock
|
|||||||
.vscode/
|
.vscode/
|
||||||
.crystal/
|
.crystal/
|
||||||
venv/
|
venv/
|
||||||
|
.croupier
|
||||||
|
coverage/
|
||||||
|
run_tests
|
||||||
|
3
.md.rb
Normal file
3
.md.rb
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
exclude_rule 'MD033' # Inline HTML
|
||||||
|
exclude_rule 'MD005' # 3-space indent for lists
|
||||||
|
exclude_rule 'MD024' # Repeated headings
|
35
.pre-commit-config.yaml
Normal file
35
.pre-commit-config.yaml
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# See https://pre-commit.com for more information
|
||||||
|
# See https://pre-commit.com/hooks.html for more hooks
|
||||||
|
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: v4.6.0
|
||||||
|
hooks:
|
||||||
|
- id: trailing-whitespace
|
||||||
|
- id: end-of-file-fixer
|
||||||
|
- id: check-yaml
|
||||||
|
- id: check-added-large-files
|
||||||
|
- id: check-merge-conflict
|
||||||
|
- repo: https://github.com/jumanjihouse/pre-commit-hooks
|
||||||
|
rev: 3.0.0
|
||||||
|
hooks:
|
||||||
|
- id: shellcheck
|
||||||
|
- id: markdownlint
|
||||||
|
exclude: '^content'
|
||||||
|
- repo: https://github.com/mrtazz/checkmake
|
||||||
|
rev: 0.2.2
|
||||||
|
hooks:
|
||||||
|
- id: checkmake
|
||||||
|
exclude: lexers/makefile.xml
|
||||||
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
||||||
|
rev: 0.29.2
|
||||||
|
hooks:
|
||||||
|
- id: check-github-workflows
|
||||||
|
- repo: https://github.com/commitizen-tools/commitizen
|
||||||
|
rev: v3.29.0 # automatically updated by Commitizen
|
||||||
|
hooks:
|
||||||
|
- id: commitizen
|
||||||
|
- id: commitizen-branch
|
||||||
|
stages:
|
||||||
|
- post-commit
|
||||||
|
- push
|
127
CHANGELOG.md
Normal file
127
CHANGELOG.md
Normal file
@ -0,0 +1,127 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [0.11.1] - 2024-10-14
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- Support choosing lexers when used as a library
|
||||||
|
|
||||||
|
## [0.11.0] - 2024-10-14
|
||||||
|
|
||||||
|
### 🚀 Features
|
||||||
|
|
||||||
|
- Support selecting only some themes
|
||||||
|
|
||||||
|
## [0.10.0] - 2024-09-26
|
||||||
|
|
||||||
|
### 🚀 Features
|
||||||
|
|
||||||
|
- Optional conditional baking of lexers
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- Strip binaries for release artifacts
|
||||||
|
- Fix metadata to show crystal
|
||||||
|
|
||||||
|
## [0.9.1] - 2024-09-22
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- Terminal formatter was skipping things that it could highlight
|
||||||
|
- Bug in high-level API for png formatter
|
||||||
|
|
||||||
|
### 🧪 Testing
|
||||||
|
|
||||||
|
- Added minimal tests for svg and png formatters
|
||||||
|
|
||||||
|
## [0.9.0] - 2024-09-21
|
||||||
|
|
||||||
|
### 🚀 Features
|
||||||
|
|
||||||
|
- PNG writer based on Stumpy libs
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Clean
|
||||||
|
- Detect version bump in release script
|
||||||
|
- Improve changelog handling
|
||||||
|
|
||||||
|
## [0.8.0] - 2024-09-21
|
||||||
|
|
||||||
|
### 🚀 Features
|
||||||
|
|
||||||
|
- SVG formatter
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- HTML formatter was setting bold wrong
|
||||||
|
|
||||||
|
### 📚 Documentation
|
||||||
|
|
||||||
|
- Added instructions to add as a dependency
|
||||||
|
|
||||||
|
### 🧪 Testing
|
||||||
|
|
||||||
|
- Add basic tests for crystal and delegating lexers
|
||||||
|
- Added tests for CSS generation
|
||||||
|
|
||||||
|
### ⚙ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Fix example code in README
|
||||||
|
|
||||||
|
## [0.7.0] - 2024-09-10
|
||||||
|
|
||||||
|
### 🚀 Features
|
||||||
|
|
||||||
|
- Higher level API (`to_html` and `to_ansi`)
|
||||||
|
- Use the native crystal highlighter
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- Ameba
|
||||||
|
- Variable bame in Hacefile
|
||||||
|
- Make it easier to import the Ansi formatter
|
||||||
|
- Renamed BaseLexer to Lexer and Lexer to RegexLexer to make API nicer
|
||||||
|
- Make install work
|
||||||
|
|
||||||
|
### 📚 Documentation
|
||||||
|
|
||||||
|
- Mention AUR package
|
||||||
|
|
||||||
|
### 🧪 Testing
|
||||||
|
|
||||||
|
- Add CI workflows
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Pre-commit hooks
|
||||||
|
- Git-cliff config
|
||||||
|
- Started changelog
|
||||||
|
- Force conventional commit messages
|
||||||
|
- Force conventional commit messages
|
||||||
|
- Updated pre-commit
|
||||||
|
- *(ignore)* Fix tests
|
||||||
|
- Added badges
|
||||||
|
- Added badges
|
||||||
|
- *(ignore)* Removed random file
|
||||||
|
|
||||||
|
### Build
|
||||||
|
|
||||||
|
- Switch from Makefile to Hacefile
|
||||||
|
- Added do_release script
|
||||||
|
- Fix markdown check
|
||||||
|
|
||||||
|
### Bump
|
||||||
|
|
||||||
|
- Release v0.6.4
|
||||||
|
- Release v0.6.4
|
||||||
|
|
||||||
|
## [0.6.1] - 2024-08-25
|
||||||
|
|
||||||
|
### 📚 Documentation
|
||||||
|
|
||||||
|
- Improve readme and help message
|
||||||
|
|
||||||
|
<!-- generated by git-cliff -->
|
123
Hacefile.yml
Normal file
123
Hacefile.yml
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
variables:
|
||||||
|
FLAGS: "-d --error-trace"
|
||||||
|
NAME: "tartrazine"
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
build:
|
||||||
|
default: true
|
||||||
|
dependencies:
|
||||||
|
- src
|
||||||
|
- shard.lock
|
||||||
|
- shard.yml
|
||||||
|
- Hacefile.yml
|
||||||
|
- lexers/*xml
|
||||||
|
- styles/*xml
|
||||||
|
outputs:
|
||||||
|
- bin/{{NAME}}
|
||||||
|
commands: |
|
||||||
|
shards build {{FLAGS}}
|
||||||
|
|
||||||
|
get-deps:
|
||||||
|
dependencies:
|
||||||
|
- shard.yml
|
||||||
|
outputs:
|
||||||
|
- shard.lock
|
||||||
|
commands: |
|
||||||
|
shards install
|
||||||
|
|
||||||
|
build-release:
|
||||||
|
phony: true
|
||||||
|
always_run: true
|
||||||
|
commands: |
|
||||||
|
hace build FLAGS="--release"
|
||||||
|
|
||||||
|
install:
|
||||||
|
phony: true
|
||||||
|
always_run: true
|
||||||
|
dependencies:
|
||||||
|
- bin/{{NAME}}
|
||||||
|
commands: |
|
||||||
|
rm ${HOME}/.local/bin/{{NAME}} -f
|
||||||
|
cp bin/{{NAME}} ${HOME}/.local/bin/{{NAME}}
|
||||||
|
|
||||||
|
static:
|
||||||
|
outputs:
|
||||||
|
- bin/{{NAME}}-static-linux-amd64
|
||||||
|
- bin/{{NAME}}-static-linux-arm64
|
||||||
|
commands: |
|
||||||
|
hace clean
|
||||||
|
./build_static.sh
|
||||||
|
|
||||||
|
test:
|
||||||
|
dependencies:
|
||||||
|
- src
|
||||||
|
- spec
|
||||||
|
- shard.lock
|
||||||
|
- shard.yml
|
||||||
|
commands: |
|
||||||
|
crystal spec -v --error-trace
|
||||||
|
phony: true
|
||||||
|
always_run: true
|
||||||
|
|
||||||
|
lint:
|
||||||
|
dependencies:
|
||||||
|
- src
|
||||||
|
- spec
|
||||||
|
- shard.lock
|
||||||
|
- shard.yml
|
||||||
|
commands: |
|
||||||
|
crystal tool format src/*.cr spec/*.cr
|
||||||
|
ameba --fix
|
||||||
|
always_run: true
|
||||||
|
phony: true
|
||||||
|
|
||||||
|
docs:
|
||||||
|
dependencies:
|
||||||
|
- src
|
||||||
|
- shard.lock
|
||||||
|
- shard.yml
|
||||||
|
- README.md
|
||||||
|
commands: |
|
||||||
|
crystal docs
|
||||||
|
outputs:
|
||||||
|
- docs/index.html
|
||||||
|
|
||||||
|
pre-commit:
|
||||||
|
default: true
|
||||||
|
outputs:
|
||||||
|
- .git/hooks/commit-msg
|
||||||
|
- .git/hooks/pre-commit
|
||||||
|
dependencies:
|
||||||
|
- .pre-commit-config.yaml
|
||||||
|
commands: |
|
||||||
|
pre-commit install --hook-type commit-msg
|
||||||
|
pre-commit install
|
||||||
|
|
||||||
|
clean:
|
||||||
|
phony: true
|
||||||
|
always_run: true
|
||||||
|
commands: |
|
||||||
|
rm -rf shard.lock bin lib
|
||||||
|
|
||||||
|
coverage:
|
||||||
|
dependencies:
|
||||||
|
- src
|
||||||
|
- spec
|
||||||
|
- shard.lock
|
||||||
|
- shard.yml
|
||||||
|
commands: |
|
||||||
|
shards install
|
||||||
|
crystal build -o bin/run_tests src/run_tests.cr
|
||||||
|
rm -rf coverage/
|
||||||
|
mkdir coverage
|
||||||
|
kcov --clean --include-path=./src ${PWD}/coverage ./bin/run_tests
|
||||||
|
outputs:
|
||||||
|
- coverage/index.html
|
||||||
|
|
||||||
|
loc:
|
||||||
|
phony: true
|
||||||
|
always_run: true
|
||||||
|
dependencies:
|
||||||
|
- src
|
||||||
|
commands: |
|
||||||
|
tokei src -e src/constants/
|
7
Makefile
7
Makefile
@ -1,7 +0,0 @@
|
|||||||
build: $(wildcard src/**/*.cr) $(wildcard lexers/*xml) $(wildcard styles/*xml) shard.yml
|
|
||||||
shards build -Dstrict_multi_assign -Dno_number_autocast -d --error-trace
|
|
||||||
release: $(wildcard src/**/*.cr) $(wildcard lexers/*xml) $(wildcard styles/*xml) shard.yml
|
|
||||||
shards build --release
|
|
||||||
static: $(wildcard src/**/*.cr) $(wildcard lexers/*xml) $(wildcard styles/*xml) shard.yml
|
|
||||||
shards build --release --static
|
|
||||||
strip bin/tartrazine
|
|
105
README.md
105
README.md
@ -1,20 +1,26 @@
|
|||||||
# TARTRAZINE
|
# TARTRAZINE
|
||||||
|
|
||||||
|
[](https://github.com/ralsina/tartrazine/actions/workflows/ci.yml)
|
||||||
|
[](https://codecov.io/gh/ralsina/tartrazine)
|
||||||
|
|
||||||
Tartrazine is a library to syntax-highlight code. It is
|
Tartrazine is a library to syntax-highlight code. It is
|
||||||
a port of [Pygments](https://pygments.org/) to
|
a port of [Pygments](https://pygments.org/) to
|
||||||
[Crystal](https://crystal-lang.org/).
|
[Crystal](https://crystal-lang.org/).
|
||||||
|
|
||||||
It also provides a CLI tool which can be used to highlight many things in many styles.
|
It also provides a CLI tool which can be used to highlight many things in many styles.
|
||||||
|
|
||||||
Currently Tartrazine supports 247 languages. and it has 331 themes (63 from Chroma, the rest are base16 themes via
|
Currently Tartrazine supports 247 languages and has 331 themes (63 from Chroma,
|
||||||
[Sixteen](https://github.com/ralsina/sixteen)
|
the rest are base16 themes via [Sixteen](https://github.com/ralsina/sixteen)
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
If you are using Arch: Use yay or your favourite AUR helper, package name is `tartrazine`.
|
||||||
|
|
||||||
From prebuilt binaries:
|
From prebuilt binaries:
|
||||||
|
|
||||||
Each release provides statically-linked binaries that should
|
Each release provides statically-linked binaries that should
|
||||||
work on any Linux. Get them from the [releases page](https://github.com/ralsina/tartrazine/releases) and put them in your PATH.
|
work on any Linux. Get them from the [releases page](https://github.com/ralsina/tartrazine/releases)
|
||||||
|
and put them in your PATH.
|
||||||
|
|
||||||
To build from source:
|
To build from source:
|
||||||
|
|
||||||
@ -27,30 +33,100 @@ To build from source:
|
|||||||
Show a syntax highlighted version of a C source file in your terminal:
|
Show a syntax highlighted version of a C source file in your terminal:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ tartrazine whatever.c -l c -t catppuccin-macchiato --line-numbers -f terminal
|
tartrazine whatever.c -l c -t catppuccin-macchiato --line-numbers -f terminal
|
||||||
```
|
```
|
||||||
|
|
||||||
Generate a standalone HTML file from a C source file with the syntax highlighted:
|
Generate a standalone HTML file from a C source file with the syntax highlighted:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ tartrazine whatever.c -t catppuccin-macchiato --line-numbers \
|
$ tartrazine whatever.c -t catppuccin-macchiato --line-numbers \
|
||||||
--standalone -f html -o whatever.html
|
--standalone -f html -o whatever.html
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage as a Library
|
## Usage as a Library
|
||||||
|
|
||||||
This works:
|
Add to your `shard.yml`:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
dependencies:
|
||||||
|
tartrazine:
|
||||||
|
github: ralsina/tartrazine
|
||||||
|
```
|
||||||
|
|
||||||
|
This is the high level API:
|
||||||
|
|
||||||
```crystal
|
```crystal
|
||||||
require "tartrazine"
|
require "tartrazine"
|
||||||
|
|
||||||
lexer = Tartrazine.lexer("crystal")
|
html = Tartrazine.to_html(
|
||||||
theme = Tartrazine.theme("catppuccin-macchiato")
|
"puts \"Hello, world!\"",
|
||||||
formatter = Tartrazine::Html.new
|
language: "crystal",
|
||||||
formatter.theme = theme
|
theme: "catppuccin-macchiato",
|
||||||
puts formatter.format(File.read(ARGV[0]), lexer)
|
standalone: true,
|
||||||
|
line_numbers: true
|
||||||
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
This does more or less the same thing, but more manually:
|
||||||
|
|
||||||
|
```crystal
|
||||||
|
lexer = Tartrazine.lexer("crystal")
|
||||||
|
formatter = Tartrazine::Html.new(
|
||||||
|
theme: Tartrazine.theme("catppuccin-macchiato"),
|
||||||
|
line_numbers: true,
|
||||||
|
standalone: true,
|
||||||
|
)
|
||||||
|
puts formatter.format("puts \"Hello, world!\"", lexer)
|
||||||
|
```
|
||||||
|
|
||||||
|
The reason you may want to use the manual version is to reuse
|
||||||
|
the lexer and formatter objects for performance reasons.
|
||||||
|
|
||||||
|
## Choosing what Lexers you want
|
||||||
|
|
||||||
|
By default Tartrazine will support all its lexers by embedding
|
||||||
|
them in the binary. This makes the binary large. If you are
|
||||||
|
using it as a library, you may want to just include a selection of lexers. To do that:
|
||||||
|
|
||||||
|
* Pass the `-Dnolexers` flag to the compiler
|
||||||
|
* Set the `TT_LEXERS` environment variable to a
|
||||||
|
comma-separated list of lexers you want to include.
|
||||||
|
|
||||||
|
|
||||||
|
This builds a binary with only the python, markdown, bash and yaml lexers (enough to highlight this `README.md`):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
> TT_LEXERS=python,markdown,bash,yaml shards build -Dnolexers -d --error-trace
|
||||||
|
Dependencies are satisfied
|
||||||
|
Building: tartrazine
|
||||||
|
```
|
||||||
|
|
||||||
|
## Choosing what themes you want
|
||||||
|
|
||||||
|
Themes come from two places, tartrazine itself and [Sixteen](https://github.com/ralsina/sixteen).
|
||||||
|
|
||||||
|
To only embed selected themes, build your project with the `-Dnothemes` option, and
|
||||||
|
you can set two environment variables to control which themes are included:
|
||||||
|
|
||||||
|
* `TT_THEMES` is a comma-separated list of themes to include from tartrazine (see the styles directory in the source)
|
||||||
|
* `SIXTEEN_THEMES` is a comma-separated list of themes to include from Sixteen (see the base16 directory in the sixteen source)
|
||||||
|
|
||||||
|
For example (using the tartrazine CLI as the project):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ TT_THEMES=colorful,autumn SIXTEEN_THEMES=pasque,pico shards build -Dnothemes
|
||||||
|
Dependencies are satisfied
|
||||||
|
Building: tartrazine
|
||||||
|
|
||||||
|
$ ./bin/tartrazine --list-themes
|
||||||
|
autumn
|
||||||
|
colorful
|
||||||
|
pasque
|
||||||
|
pico
|
||||||
|
```
|
||||||
|
|
||||||
|
Be careful not to build without any themes at all, nothing will work.
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
1. Fork it (<https://github.com/ralsina/tartrazine/fork>)
|
1. Fork it (<https://github.com/ralsina/tartrazine/fork>)
|
||||||
@ -63,7 +139,7 @@ puts formatter.format(File.read(ARGV[0]), lexer)
|
|||||||
|
|
||||||
- [Roberto Alsina](https://github.com/ralsina) - creator and maintainer
|
- [Roberto Alsina](https://github.com/ralsina) - creator and maintainer
|
||||||
|
|
||||||
## A port of what? Why "kind of"?
|
## A port of what, and why "kind of"
|
||||||
|
|
||||||
Pygments is a staple of the Python ecosystem, and it's great.
|
Pygments is a staple of the Python ecosystem, and it's great.
|
||||||
It lets you highlight code in many languages, and it has many
|
It lets you highlight code in many languages, and it has many
|
||||||
@ -86,5 +162,6 @@ This only covers the RegexLexers, which are the most common ones,
|
|||||||
but it means the supported languages are a subset of Chroma's, which
|
but it means the supported languages are a subset of Chroma's, which
|
||||||
is a subset of Pygments' and DelegatingLexers (useful for things like template languages)
|
is a subset of Pygments' and DelegatingLexers (useful for things like template languages)
|
||||||
|
|
||||||
Then performance was bad, so I hacked and hacked and made it
|
Then performance was bad, so I hacked and hacked and made it significantly
|
||||||
significantly [faster than chroma](https://ralsina.me/weblog/posts/a-tale-of-optimization.html) which is fun.
|
[faster than chroma](https://ralsina.me/weblog/posts/a-tale-of-optimization.html)
|
||||||
|
which is fun.
|
||||||
|
@ -7,10 +7,10 @@ docker run --rm --privileged \
|
|||||||
|
|
||||||
# Build for AMD64
|
# Build for AMD64
|
||||||
docker build . -f Dockerfile.static -t tartrazine-builder
|
docker build . -f Dockerfile.static -t tartrazine-builder
|
||||||
docker run -ti --rm -v "$PWD":/app --user="$UID" tartrazine-builder /bin/sh -c "cd /app && rm -rf lib shard.lock && make static"
|
docker run -ti --rm -v "$PWD":/app --user="$UID" tartrazine-builder /bin/sh -c "cd /app && rm -rf lib shard.lock && shards build --static --release && strip bin/tartrazine"
|
||||||
mv bin/tartrazine bin/tartrazine-static-linux-amd64
|
mv bin/tartrazine bin/tartrazine-static-linux-amd64
|
||||||
|
|
||||||
# Build for ARM64
|
# Build for ARM64
|
||||||
docker build . -f Dockerfile.static --platform linux/arm64 -t tartrazine-builder
|
docker build . -f Dockerfile.static --platform linux/arm64 -t tartrazine-builder
|
||||||
docker run -ti --rm -v "$PWD":/app --platform linux/arm64 --user="$UID" tartrazine-builder /bin/sh -c "cd /app && rm -rf lib shard.lock && make static"
|
docker run -ti --rm -v "$PWD":/app --platform linux/arm64 --user="$UID" tartrazine-builder /bin/sh -c "cd /app && rm -rf lib shard.lock && shards build --static --release && strip bin/tartrazine"
|
||||||
mv bin/tartrazine bin/tartrazine-static-linux-arm64
|
mv bin/tartrazine bin/tartrazine-static-linux-arm64
|
||||||
|
79
cliff.toml
Normal file
79
cliff.toml
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
# git-cliff ~ default configuration file
|
||||||
|
# https://git-cliff.org/docs/configuration
|
||||||
|
#
|
||||||
|
# Lines starting with "#" are comments.
|
||||||
|
# Configuration options are organized into tables and keys.
|
||||||
|
# See documentation for more information on available options.
|
||||||
|
|
||||||
|
[changelog]
|
||||||
|
# template for the changelog header
|
||||||
|
header = """
|
||||||
|
# Changelog\n
|
||||||
|
All notable changes to this project will be documented in this file.\n
|
||||||
|
"""
|
||||||
|
# template for the changelog body
|
||||||
|
# https://keats.github.io/tera/docs/#introduction
|
||||||
|
body = """
|
||||||
|
{% if version %}\
|
||||||
|
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
|
||||||
|
{% else %}\
|
||||||
|
## [unreleased]
|
||||||
|
{% endif %}\
|
||||||
|
{% for group, commits in commits | group_by(attribute="group") %}
|
||||||
|
### {{ group | striptags | trim | upper_first }}
|
||||||
|
{% for commit in commits %}
|
||||||
|
- {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
|
||||||
|
{% if commit.breaking %}[**breaking**] {% endif %}\
|
||||||
|
{{ commit.message | upper_first }}\
|
||||||
|
{% endfor %}
|
||||||
|
{% endfor %}\n
|
||||||
|
"""
|
||||||
|
# template for the changelog footer
|
||||||
|
footer = """
|
||||||
|
<!-- generated by git-cliff -->
|
||||||
|
"""
|
||||||
|
# remove the leading and trailing s
|
||||||
|
trim = true
|
||||||
|
# postprocessors
|
||||||
|
postprocessors = [
|
||||||
|
# { pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" }, # replace repository URL
|
||||||
|
]
|
||||||
|
|
||||||
|
[git]
|
||||||
|
# parse the commits based on https://www.conventionalcommits.org
|
||||||
|
conventional_commits = true
|
||||||
|
# filter out the commits that are not conventional
|
||||||
|
filter_unconventional = true
|
||||||
|
# process each line of a commit as an individual commit
|
||||||
|
split_commits = false
|
||||||
|
# regex for preprocessing the commit messages
|
||||||
|
commit_preprocessors = [
|
||||||
|
# Replace issue numbers
|
||||||
|
#{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))"},
|
||||||
|
# Check spelling of the commit with https://github.com/crate-ci/typos
|
||||||
|
# If the spelling is incorrect, it will be automatically fixed.
|
||||||
|
#{ pattern = '.*', replace_command = 'typos --write-changes -' },
|
||||||
|
]
|
||||||
|
# regex for parsing and grouping commits
|
||||||
|
commit_parsers = [
|
||||||
|
{ message = "^feat", group = "<!-- 0 -->🚀 Features" },
|
||||||
|
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
|
||||||
|
{ message = "^doc", group = "<!-- 3 -->📚 Documentation" },
|
||||||
|
{ message = "^perf", group = "<!-- 4 -->⚡ Performance" },
|
||||||
|
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
|
||||||
|
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
|
||||||
|
{ message = "^test", group = "<!-- 6 -->🧪 Testing" },
|
||||||
|
{ message = "^chore\\(release\\): prepare for", skip = true },
|
||||||
|
{ message = "^chore\\(deps.*\\)", skip = true },
|
||||||
|
{ message = "^chore\\(pr\\)", skip = true },
|
||||||
|
{ message = "^chore\\(pull\\)", skip = true },
|
||||||
|
{ message = "^chore|^ci", group = "<!-- 7 -->⚙️ Miscellaneous Tasks" },
|
||||||
|
{ body = ".*security", group = "<!-- 8 -->🛡️ Security" },
|
||||||
|
{ message = "^revert", group = "<!-- 9 -->◀️ Revert" },
|
||||||
|
]
|
||||||
|
# filter out the commits that are not matched by commit parsers
|
||||||
|
filter_commits = false
|
||||||
|
# sort the tags topologically
|
||||||
|
topo_order = false
|
||||||
|
# sort the commits inside sections by oldest/newest order
|
||||||
|
sort_commits = "oldest"
|
15
do_release.sh
Executable file
15
do_release.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set e
|
||||||
|
|
||||||
|
PKGNAME=$(basename "$PWD")
|
||||||
|
VERSION=$(git cliff --bumped-version --unreleased |cut -dv -f2)
|
||||||
|
|
||||||
|
sed "s/^version:.*$/version: $VERSION/g" -i shard.yml
|
||||||
|
git add shard.yml
|
||||||
|
hace lint test
|
||||||
|
git cliff --bump -u -p CHANGELOG.md
|
||||||
|
git commit -a -m "bump: Release v$VERSION"
|
||||||
|
hace static
|
||||||
|
git tag "v$VERSION"
|
||||||
|
git push --tags
|
||||||
|
gh release create "v$VERSION" "bin/$PKGNAME-static-linux-amd64" "bin/$PKGNAME-static-linux-arm64" --title "Release v$VERSION" --notes "$(git cliff -l -s all)"
|
BIN
fonts/courier-bold-oblique.pcf.gz
Normal file
BIN
fonts/courier-bold-oblique.pcf.gz
Normal file
Binary file not shown.
BIN
fonts/courier-bold.pcf.gz
Normal file
BIN
fonts/courier-bold.pcf.gz
Normal file
Binary file not shown.
BIN
fonts/courier-oblique.pcf.gz
Normal file
BIN
fonts/courier-oblique.pcf.gz
Normal file
Binary file not shown.
BIN
fonts/courier-regular.pcf.gz
Normal file
BIN
fonts/courier-regular.pcf.gz
Normal file
Binary file not shown.
@ -127,4 +127,3 @@
|
|||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
|
||||||
|
@ -52,4 +52,3 @@
|
|||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
|
||||||
|
@ -151,4 +151,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -63,4 +63,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -65,4 +65,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -160,4 +160,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -318,4 +318,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -63,4 +63,3 @@
|
|||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
|
||||||
|
@ -72,4 +72,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -55,4 +55,3 @@
|
|||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
|
||||||
|
@ -105,4 +105,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -314,4 +314,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -71,4 +71,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -56,4 +56,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -127,4 +127,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -171,4 +171,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -306,4 +306,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -123,4 +123,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -75,4 +75,3 @@
|
|||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
|
||||||
|
@ -67,4 +67,3 @@
|
|||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
|
||||||
|
@ -92,4 +92,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -94,4 +94,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -217,4 +217,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -22,4 +22,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -657,4 +657,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -19,4 +19,3 @@
|
|||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
|
||||||
|
@ -149,4 +149,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -81,4 +81,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -138,4 +138,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -25,4 +25,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -80,4 +80,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -48,4 +48,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -118,4 +118,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -328,4 +328,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -119,4 +119,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -134,4 +134,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -148,4 +148,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -89,4 +89,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -131,4 +131,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -140,4 +140,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -52,4 +52,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -87,4 +87,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -87,4 +87,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -207,4 +207,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -181,4 +181,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -133,4 +133,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -1,762 +0,0 @@
|
|||||||
<lexer>
|
|
||||||
<config>
|
|
||||||
<name>Crystal</name>
|
|
||||||
<alias>cr</alias>
|
|
||||||
<alias>crystal</alias>
|
|
||||||
<filename>*.cr</filename>
|
|
||||||
<mime_type>text/x-crystal</mime_type>
|
|
||||||
<dot_all>true</dot_all>
|
|
||||||
</config>
|
|
||||||
<rules>
|
|
||||||
<state name="pa-intp-string">
|
|
||||||
<rule pattern="\\[\(]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\(">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\)">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp-escaped"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#()]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#()]+">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="ab-regex">
|
|
||||||
<rule pattern="\\[\\<>]">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="<">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern=">[imsx]*">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#<>]">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#<>]+">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="cb-regex">
|
|
||||||
<rule pattern="\\[\\{}]">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\{">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\}[imsx]*">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#{}]">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#{}]+">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="simple-backtick">
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp-escaped"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\`#]+">
|
|
||||||
<token type="LiteralStringBacktick"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#]">
|
|
||||||
<token type="LiteralStringBacktick"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="`">
|
|
||||||
<token type="LiteralStringBacktick"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="string-intp">
|
|
||||||
<rule pattern="#\{">
|
|
||||||
<token type="LiteralStringInterpol"/>
|
|
||||||
<push state="in-intp"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="interpolated-regex">
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#]">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#]+">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="cb-string">
|
|
||||||
<rule pattern="\\[\\{}]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\{">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\}">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#{}]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#{}]+">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="in-macro-control">
|
|
||||||
<rule pattern="\{%">
|
|
||||||
<token type="LiteralStringInterpol"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%\}">
|
|
||||||
<token type="LiteralStringInterpol"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="for\b|in\b">
|
|
||||||
<token type="Keyword"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="root"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="interpolated-string">
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#]+">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="in-macro-expr">
|
|
||||||
<rule pattern="\{\{">
|
|
||||||
<token type="LiteralStringInterpol"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\}\}">
|
|
||||||
<token type="LiteralStringInterpol"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="root"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="simple-string">
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp-escaped"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\"#]+">
|
|
||||||
<token type="LiteralStringDouble"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#]">
|
|
||||||
<token type="LiteralStringDouble"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern=""">
|
|
||||||
<token type="LiteralStringDouble"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="cb-intp-string">
|
|
||||||
<rule pattern="\\[\{]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\{">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\}">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp-escaped"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#{}]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#{}]+">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="string-intp-escaped">
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="string-escaped"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="sb-regex">
|
|
||||||
<rule pattern="\\[\\\[\]]">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\[">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\][imsx]*">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#\[\]]">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#\[\]]+">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="classname">
|
|
||||||
<rule pattern="[A-Z_]\w*">
|
|
||||||
<token type="NameClass"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(\()(\s*)([A-Z_]\w*)(\s*)(\))">
|
|
||||||
<bygroups>
|
|
||||||
<token type="Punctuation"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="NameClass"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="Punctuation"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="string-escaped">
|
|
||||||
<rule pattern="\\([\\befnstv#"\']|x[a-fA-F0-9]{1,2}|[0-7]{1,3})">
|
|
||||||
<token type="LiteralStringEscape"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="sb-intp-string">
|
|
||||||
<rule pattern="\\[\[]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\[">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp-escaped"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#\[\]]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#\[\]]+">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="pa-regex">
|
|
||||||
<rule pattern="\\[\\()]">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\(">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\)[imsx]*">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#()]">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#()]+">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="in-attr">
|
|
||||||
<rule pattern="\[">
|
|
||||||
<token type="Operator"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\]">
|
|
||||||
<token type="Operator"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="root"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="ab-intp-string">
|
|
||||||
<rule pattern="\\[<]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="<">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern=">">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp-escaped"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#<>]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#<>]+">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="in-intp">
|
|
||||||
<rule pattern="\{">
|
|
||||||
<token type="LiteralStringInterpol"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\}">
|
|
||||||
<token type="LiteralStringInterpol"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="root"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="end-part">
|
|
||||||
<rule pattern=".+">
|
|
||||||
<token type="CommentPreproc"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="root">
|
|
||||||
<rule pattern="#.*?$">
|
|
||||||
<token type="CommentSingle"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(instance_sizeof|pointerof|protected|abstract|require|private|include|unless|typeof|sizeof|return|extend|ensure|rescue|ifdef|super|break|begin|until|while|elsif|yield|next|when|else|then|case|with|end|asm|if|do|as|of)\b">
|
|
||||||
<token type="Keyword"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(false|true|nil)\b">
|
|
||||||
<token type="KeywordConstant"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(module|lib)(\s+)([a-zA-Z_]\w*(?:::[a-zA-Z_]\w*)*)">
|
|
||||||
<bygroups>
|
|
||||||
<token type="Keyword"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="NameNamespace"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(def|fun|macro)(\s+)((?:[a-zA-Z_]\w*::)*)">
|
|
||||||
<bygroups>
|
|
||||||
<token type="Keyword"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="NameNamespace"/>
|
|
||||||
</bygroups>
|
|
||||||
<push state="funcname"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="def(?=[*%&^`~+-/\[<>=])">
|
|
||||||
<token type="Keyword"/>
|
|
||||||
<push state="funcname"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(class|struct|union|type|alias|enum)(\s+)((?:[a-zA-Z_]\w*::)*)">
|
|
||||||
<bygroups>
|
|
||||||
<token type="Keyword"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="NameNamespace"/>
|
|
||||||
</bygroups>
|
|
||||||
<push state="classname"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(self|out|uninitialized)\b|(is_a|responds_to)\?">
|
|
||||||
<token type="KeywordPseudo"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(def_equals_and_hash|assert_responds_to|forward_missing_to|def_equals|property|def_hash|parallel|delegate|debugger|getter|record|setter|spawn|pp)\b">
|
|
||||||
<token type="NameBuiltinPseudo"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="getter[!?]|property[!?]|__(DIR|FILE|LINE)__\b">
|
|
||||||
<token type="NameBuiltinPseudo"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(?<!\.)(get_stack_top|StaticArray|Concurrent|with_color|Reference|Scheduler|read_line|Exception|at_exit|Pointer|Channel|Float64|sprintf|Float32|Process|Object|Struct|caller|UInt16|UInt32|UInt64|system|future|Number|printf|String|Symbol|Int32|Range|Slice|Regex|Mutex|sleep|Array|Class|raise|Tuple|Deque|delay|Float|Int16|print|abort|Value|UInt8|Int64|puts|Proc|File|Void|exit|fork|Bool|Char|gets|lazy|loop|main|rand|Enum|Int8|Time|Hash|Set|Box|Nil|Dir|Int|p)\b">
|
|
||||||
<token type="NameBuiltin"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(?<!\w)(<<-?)(["`\']?)([a-zA-Z_]\w*)(\2)(.*?\n)">
|
|
||||||
<token type="LiteralStringHeredoc"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(<<-?)("|\')()(\2)(.*?\n)">
|
|
||||||
<token type="LiteralStringHeredoc"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="__END__">
|
|
||||||
<token type="CommentPreproc"/>
|
|
||||||
<push state="end-part"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(?:^|(?<=[=<>~!:])|(?<=(?:\s|;)when\s)|(?<=(?:\s|;)or\s)|(?<=(?:\s|;)and\s)|(?<=\.index\s)|(?<=\.scan\s)|(?<=\.sub\s)|(?<=\.sub!\s)|(?<=\.gsub\s)|(?<=\.gsub!\s)|(?<=\.match\s)|(?<=(?:\s|;)if\s)|(?<=(?:\s|;)elsif\s)|(?<=^when\s)|(?<=^index\s)|(?<=^scan\s)|(?<=^sub\s)|(?<=^gsub\s)|(?<=^sub!\s)|(?<=^gsub!\s)|(?<=^match\s)|(?<=^if\s)|(?<=^elsif\s))(\s*)(/)">
|
|
||||||
<bygroups>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</bygroups>
|
|
||||||
<push state="multiline-regex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(?<=\(|,|\[)/">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<push state="multiline-regex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(\s+)(/)(?![\s=])">
|
|
||||||
<bygroups>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</bygroups>
|
|
||||||
<push state="multiline-regex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(0o[0-7]+(?:_[0-7]+)*(?:_?[iu][0-9]+)?)\b(\s*)([/?])?">
|
|
||||||
<bygroups>
|
|
||||||
<token type="LiteralNumberOct"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="Operator"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(0x[0-9A-Fa-f]+(?:_[0-9A-Fa-f]+)*(?:_?[iu][0-9]+)?)\b(\s*)([/?])?">
|
|
||||||
<bygroups>
|
|
||||||
<token type="LiteralNumberHex"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="Operator"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(0b[01]+(?:_[01]+)*(?:_?[iu][0-9]+)?)\b(\s*)([/?])?">
|
|
||||||
<bygroups>
|
|
||||||
<token type="LiteralNumberBin"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="Operator"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="((?:0(?![0-9])|[1-9][\d_]*)(?:\.\d[\d_]*)(?:e[+-]?[0-9]+)?(?:_?f[0-9]+)?)(\s*)([/?])?">
|
|
||||||
<bygroups>
|
|
||||||
<token type="LiteralNumberFloat"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="Operator"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="((?:0(?![0-9])|[1-9][\d_]*)(?:\.\d[\d_]*)?(?:e[+-]?[0-9]+)(?:_?f[0-9]+)?)(\s*)([/?])?">
|
|
||||||
<bygroups>
|
|
||||||
<token type="LiteralNumberFloat"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="Operator"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="((?:0(?![0-9])|[1-9][\d_]*)(?:\.\d[\d_]*)?(?:e[+-]?[0-9]+)?(?:_?f[0-9]+))(\s*)([/?])?">
|
|
||||||
<bygroups>
|
|
||||||
<token type="LiteralNumberFloat"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="Operator"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(0\b|[1-9][\d]*(?:_\d+)*(?:_?[iu][0-9]+)?)\b(\s*)([/?])?">
|
|
||||||
<bygroups>
|
|
||||||
<token type="LiteralNumberInteger"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="Operator"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="@@[a-zA-Z_]\w*">
|
|
||||||
<token type="NameVariableClass"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="@[a-zA-Z_]\w*">
|
|
||||||
<token type="NameVariableInstance"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\$\w+">
|
|
||||||
<token type="NameVariableGlobal"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\$[!@&`\'+~=/\\,;.<>_*$?:"^-]">
|
|
||||||
<token type="NameVariableGlobal"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\$-[0adFiIlpvw]">
|
|
||||||
<token type="NameVariableGlobal"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="::">
|
|
||||||
<token type="Operator"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<include state="strings"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\?(\\[MC]-)*(\\([\\befnrtv#"\']|x[a-fA-F0-9]{1,2}|[0-7]{1,3})|\S)(?!\w)">
|
|
||||||
<token type="LiteralStringChar"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[A-Z][A-Z_]+\b">
|
|
||||||
<token type="NameConstant"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\{%">
|
|
||||||
<token type="LiteralStringInterpol"/>
|
|
||||||
<push state="in-macro-control"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\{\{">
|
|
||||||
<token type="LiteralStringInterpol"/>
|
|
||||||
<push state="in-macro-expr"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(@\[)(\s*)([A-Z]\w*)">
|
|
||||||
<bygroups>
|
|
||||||
<token type="Operator"/>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="NameDecorator"/>
|
|
||||||
</bygroups>
|
|
||||||
<push state="in-attr"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(\.|::)(\[\]\?|<=>|===|\[\]=|>>|&&|\*\*|\[\]|\|\||>=|=~|!~|<<|<=|!=|==|<|/|=|-|\+|>|\*|&|%|\^|!|\||~)">
|
|
||||||
<bygroups>
|
|
||||||
<token type="Operator"/>
|
|
||||||
<token type="NameOperator"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(\.|::)([a-zA-Z_]\w*[!?]?|[*%&^`~+\-/\[<>=])">
|
|
||||||
<bygroups>
|
|
||||||
<token type="Operator"/>
|
|
||||||
<token type="Name"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[a-zA-Z_]\w*(?:[!?](?!=))?">
|
|
||||||
<token type="Name"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(\[|\]\??|\*\*|<=>?|>=|<<?|>>?|=~|===|!~|&&?|\|\||\.{1,3})">
|
|
||||||
<token type="Operator"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[-+/*%=<>&!^|~]=?">
|
|
||||||
<token type="Operator"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[(){};,/?:\\]">
|
|
||||||
<token type="Punctuation"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\s+">
|
|
||||||
<token type="Text"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="multiline-regex">
|
|
||||||
<rule>
|
|
||||||
<include state="string-intp"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\\\\">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\\/">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#]">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\/#]+">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="/[imsx]*">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="ab-string">
|
|
||||||
<rule pattern="\\[\\<>]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="<">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern=">">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#<>]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#<>]+">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="pa-string">
|
|
||||||
<rule pattern="\\[\\()]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\(">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\)">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#()]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#()]+">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="strings">
|
|
||||||
<rule pattern="\:@{0,2}[a-zA-Z_]\w*[!?]?">
|
|
||||||
<token type="LiteralStringSymbol"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\:@{0,2}(\[\]\?|<=>|===|\[\]=|>>|&&|\*\*|\[\]|\|\||>=|=~|!~|<<|<=|!=|==|<|/|=|-|\+|>|\*|&|%|\^|!|\||~)">
|
|
||||||
<token type="LiteralStringSymbol"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern=":'(\\\\|\\'|[^'])*'">
|
|
||||||
<token type="LiteralStringSymbol"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="'(\\\\|\\'|[^']|\\[^'\\]+)'">
|
|
||||||
<token type="LiteralStringChar"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern=":"">
|
|
||||||
<token type="LiteralStringSymbol"/>
|
|
||||||
<push state="simple-sym"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="([a-zA-Z_]\w*)(:)(?!:)">
|
|
||||||
<bygroups>
|
|
||||||
<token type="LiteralStringSymbol"/>
|
|
||||||
<token type="Punctuation"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern=""">
|
|
||||||
<token type="LiteralStringDouble"/>
|
|
||||||
<push state="simple-string"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(?<!\.)`">
|
|
||||||
<token type="LiteralStringBacktick"/>
|
|
||||||
<push state="simple-backtick"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%\{">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push state="cb-intp-string"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%[wi]\{">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push state="cb-string"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%r\{">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<push state="cb-regex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%\[">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push state="sb-intp-string"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%[wi]\[">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push state="sb-string"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%r\[">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<push state="sb-regex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%\(">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push state="pa-intp-string"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%[wi]\(">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push state="pa-string"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%r\(">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<push state="pa-regex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%<">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push state="ab-intp-string"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%[wi]<">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push state="ab-string"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="%r<">
|
|
||||||
<token type="LiteralStringRegex"/>
|
|
||||||
<push state="ab-regex"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(%r([\W_]))((?:\\\2|(?!\2).)*)(\2[imsx]*)">
|
|
||||||
<token type="LiteralString"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(%[wi]([\W_]))((?:\\\2|(?!\2).)*)(\2)">
|
|
||||||
<token type="LiteralString"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(?<=[-+/*%=<>&!^|~,(])(\s*)(%([\t ])(?:(?:\\\3|(?!\3).)*)\3)">
|
|
||||||
<bygroups>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<token type="None"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="^(\s*)(%([\t ])(?:(?:\\\3|(?!\3).)*)\3)">
|
|
||||||
<bygroups>
|
|
||||||
<token type="Text"/>
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<token type="None"/>
|
|
||||||
</bygroups>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="(%([\[{(<]))((?:\\\2|(?!\2).)*)(\2)">
|
|
||||||
<token type="LiteralString"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="sb-string">
|
|
||||||
<rule pattern="\\[\\\[\]]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\[">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<push/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="\]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#\[\]]">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\#\[\]]+">
|
|
||||||
<token type="LiteralStringOther"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="funcname">
|
|
||||||
<rule pattern="(?:([a-zA-Z_]\w*)(\.))?([a-zA-Z_]\w*[!?]?|\*\*?|[-+]@?|[/%&|^`~]|\[\]=?|<<|>>|<=?>|>=?|===?)">
|
|
||||||
<bygroups>
|
|
||||||
<token type="NameClass"/>
|
|
||||||
<token type="Operator"/>
|
|
||||||
<token type="NameFunction"/>
|
|
||||||
</bygroups>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
<rule>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
<state name="simple-sym">
|
|
||||||
<rule>
|
|
||||||
<include state="string-escaped"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[^\\"#]+">
|
|
||||||
<token type="LiteralStringSymbol"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern="[\\#]">
|
|
||||||
<token type="LiteralStringSymbol"/>
|
|
||||||
</rule>
|
|
||||||
<rule pattern=""">
|
|
||||||
<token type="LiteralStringSymbol"/>
|
|
||||||
<pop depth="1"/>
|
|
||||||
</rule>
|
|
||||||
</state>
|
|
||||||
</rules>
|
|
||||||
</lexer>
|
|
@ -320,4 +320,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -369,4 +369,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -130,4 +130,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -210,4 +210,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -14,4 +14,4 @@
|
|||||||
<rule pattern="([-A-Za-z0-9]+)(\[[^\] \t=]+\])?([ \t]*)(=)([ \t]*)([^\n]*)([ \t\n]*\n)"><bygroups><token type="NameAttribute"/><token type="NameNamespace"/><token type="TextWhitespace"/><token type="Operator"/><token type="TextWhitespace"/><token type="LiteralString"/><token type="TextWhitespace"/></bygroups></rule>
|
<rule pattern="([-A-Za-z0-9]+)(\[[^\] \t=]+\])?([ \t]*)(=)([ \t]*)([^\n]*)([ \t\n]*\n)"><bygroups><token type="NameAttribute"/><token type="NameNamespace"/><token type="TextWhitespace"/><token type="Operator"/><token type="TextWhitespace"/><token type="LiteralString"/><token type="TextWhitespace"/></bygroups></rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -49,4 +49,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -150,4 +150,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -54,4 +54,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -165,4 +165,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -173,4 +173,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -87,4 +87,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -741,4 +741,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -116,4 +116,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -129,4 +129,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -163,4 +163,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -409,4 +409,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -65,4 +65,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -156,4 +156,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -75,4 +75,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -68,4 +68,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -260,4 +260,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -62,4 +62,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -286,4 +286,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -111,4 +111,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -85,4 +85,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -144,4 +144,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -269,4 +269,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -140,4 +140,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -186,4 +186,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -146,4 +146,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -156,4 +156,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -101,4 +101,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -213,4 +213,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -44,4 +44,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
@ -42,4 +42,4 @@
|
|||||||
</rule>
|
</rule>
|
||||||
</state>
|
</state>
|
||||||
</rules>
|
</rules>
|
||||||
</lexer>
|
</lexer>
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user