Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | * | Merge in HSAIL lexer (PR#518). | Georg Brandl | 2016-02-17 | 1 | -79/+83 | |
| | |\ | ||||||
| | | * | merge default into stable | Georg Brandl | 2016-01-17 | 1 | -0/+436 | |
| | | | ||||||
| | * | HSAIL: Add more keywords, strings, numerical constants | grollinger | 2015-11-07 | 1 | -10/+34 | |
| | | | ||||||
| | * | Add HSAIL lexer | grollinger | 2015-11-06 | 1 | -1/+110 | |
| | | | ||||||
| * | | Lex comment as Comment when a newline gets escaped | Ruben De Smet | 2016-01-07 | 1 | -3/+4 | |
| | | | ||||||
| * | | Add tasm lexer. | Ruben De Smet | 2016-01-07 | 1 | -2/+80 | |
| |/ | | | | | | | I copied the nasm lexer and added or removed things that are different. | |||||
| * | Closes #1124: Add 'addrspacecast' instruction to the LLVM asm lexer | Zvi Rackover | 2015-06-30 | 1 | -1/+2 | |
| | | ||||||
| * | Copyright year update. | Georg Brandl | 2015-01-21 | 1 | -1/+1 | |
| | | ||||||
| * | Simplify charclasses in a few more modules | Georg Brandl | 2014-11-06 | 1 | -3/+3 | |
| | | ||||||
| * | Fix allowing whitespace before preprocessor commands in NASM. | Georg Brandl | 2014-11-06 | 1 | -1/+1 | |
| | | ||||||
| * | ca65: allow brackets | Georg Brandl | 2014-10-07 | 1 | -1/+1 | |
| | | ||||||
| * | Better name for ca65 assembler lexer. | Georg Brandl | 2014-10-07 | 1 | -1/+1 | |
| | | ||||||
| * | Remove the c_like subpackage. | Georg Brandl | 2014-09-20 | 1 | -2/+2 | |
| | | ||||||
| * | split up text lexers | Georg Brandl | 2014-09-19 | 1 | -11/+11 | |
| | | ||||||
| * | Update ElixirLexer and example_elixir.ex | Alexei Sholik | 2014-06-05 | 1 | -0/+435 | |
| | | | | | | | | | Elixir syntax has evolved quite significantly since the initial lexer was written. In this update I have rewritten most of the code to support modern Elixir (as of v0.14.0-dev). The example file has also been updated to give an quick overview of most of the language constructs. | |||||
* | Copyright update. | Georg Brandl | 2017-01-22 | 1 | -1/+1 | |
| | ||||||
* | Add support for partials and path segments for Handlebars. | Christian Hammond | 2016-11-04 | 1 | -0/+628 | |
This introduces support for some missing features to the Handlebars lexer: Partials and path segments. Partials mostly appeared to work before, but the `>` in `{{> ... }}` would appear as a syntax error, as could other components of the partial. This change introduces support for: * Standard partials: `{{> partialName}}` * Partials with parameters: `{{> partialName varname="value"}}` * Ddynamic partials: `{{> (partialFunc)}}` * Ddynamic partials with lookups: `{{> (lookup ../path "partialName")}}` * Partial blocks: `{{> @partial-block}}` * Inline partials: `{{#*inline}}..{{/inline}}` It also introduces support for path segments, which can reference content in the current context or in a parent context. For instance, `this.name`, `this/name`, `./name`, `../name`, `this/name`, etc. These are all now tracked as variables. |