├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── index.d.cts └── index.d.ts ├── package.json ├── rollup.config.js ├── src ├── highlight.js ├── python.grammar └── tokens.js └── test ├── expression.txt ├── statement.txt ├── test-incremental.js └── test-python.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /src/parser.* 3 | .tern-* 4 | /dist 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.d.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/dist/index.d.cts -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/src/highlight.js -------------------------------------------------------------------------------- /src/python.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/src/python.grammar -------------------------------------------------------------------------------- /src/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/src/tokens.js -------------------------------------------------------------------------------- /test/expression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/test/expression.txt -------------------------------------------------------------------------------- /test/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/test/statement.txt -------------------------------------------------------------------------------- /test/test-incremental.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/test/test-incremental.js -------------------------------------------------------------------------------- /test/test-python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/python/HEAD/test/test-python.js --------------------------------------------------------------------------------