Skip to content

Commit

Permalink
lexer: add some meta data to newly added lexers
Browse files Browse the repository at this point in the history
  • Loading branch information
martanne committed Dec 29, 2015
1 parent d138908 commit b3e9b17
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions lexers/apl.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-- APL LPeg lexer.
-- Author: David B. Lamkins <[email protected]>

local l = require('lexer')
local token, word_match = l.token, l.word_match
Expand Down
3 changes: 2 additions & 1 deletion lexers/faust.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-- Faust LPeg lexer.
-- Faust LPeg lexer, see http://faust.grame.fr/
-- Author: David B. Lamkins <[email protected]>

local l = require('lexer')
local token, word_match = l.token, l.word_match
Expand Down
2 changes: 1 addition & 1 deletion lexers/ledger.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- Copyright 2015 Charles Lehner. See LICENSE.
-- ledger journal LPeg lexer.
-- ledger journal LPeg lexer, see http://www.ledger-cli.org/

local l = require('lexer')
local token, word_match = l.token, l.word_match
Expand Down
3 changes: 2 additions & 1 deletion lexers/pure.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-- pure LPeg lexer.
-- pure LPeg lexer, see http://purelang.bitbucket.org/
-- Author: David B. Lamkins <[email protected]>

local l = require('lexer')
local token, word_match = l.token, l.word_match
Expand Down

0 comments on commit b3e9b17

Please sign in to comment.