aboutsummaryrefslogtreecommitdiff
path: root/lexers/faust.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lexers/faust.lua')
-rw-r--r--lexers/faust.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/lexers/faust.lua b/lexers/faust.lua
index a4563e7..34c925e 100644
--- a/lexers/faust.lua
+++ b/lexers/faust.lua
@@ -1,5 +1,5 @@
+-- Copyright 2015-2016 David B. Lamkins <david@lamkins.net>. See LICENSE.
-- Faust LPeg lexer, see http://faust.grame.fr/
--- Author: David B. Lamkins <david@lamkins.net>
local l = require('lexer')
local token, word_match = l.token, l.word_match
@@ -27,10 +27,10 @@ local number = token(l.NUMBER, flt + int)
-- Keywords.
local keyword = token(l.KEYWORD, word_match{
- 'declare', 'import', 'mdoctags', 'dependencies', 'distributed',
- 'inputs', 'outputs', 'par', 'seq', 'sum', 'prod', 'xor', 'with',
- 'environment', 'library', 'component', 'ffunction', 'fvariable',
- 'fconstant', 'int', 'float', 'case', 'waveform', 'h:', 'v:', 't:'
+ 'declare', 'import', 'mdoctags', 'dependencies', 'distributed', 'inputs',
+ 'outputs', 'par', 'seq', 'sum', 'prod', 'xor', 'with', 'environment',
+ 'library', 'component', 'ffunction', 'fvariable', 'fconstant', 'int', 'float',
+ 'case', 'waveform', 'h:', 'v:', 't:'
})
-- Identifiers.