├── .github └── workflows │ └── dispatch.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── README.md ├── complete.ts ├── sql.grammar ├── sql.grammar.d.ts ├── sql.grammar.terms.d.ts ├── sql.ts └── tokens.ts └── test ├── test-complete.ts └── test-tokens.ts /.github/workflows/dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/.github/workflows/dispatch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/src/README.md -------------------------------------------------------------------------------- /src/complete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/src/complete.ts -------------------------------------------------------------------------------- /src/sql.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/src/sql.grammar -------------------------------------------------------------------------------- /src/sql.grammar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/src/sql.grammar.d.ts -------------------------------------------------------------------------------- /src/sql.grammar.terms.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/src/sql.grammar.terms.d.ts -------------------------------------------------------------------------------- /src/sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/src/sql.ts -------------------------------------------------------------------------------- /src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/src/tokens.ts -------------------------------------------------------------------------------- /test/test-complete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/test/test-complete.ts -------------------------------------------------------------------------------- /test/test-tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lang-sql/HEAD/test/test-tokens.ts --------------------------------------------------------------------------------