diff options
author | Sergio Queiroz <sqmedeiros@gmail.com> | 2016-12-16 11:45:46 -0300 |
---|---|---|
committer | Sergio Queiroz <sqmedeiros@gmail.com> | 2016-12-16 11:45:46 -0300 |
commit | 1968c31ba622b8b5770b0b3fb0973d9e797959f1 (patch) | |
tree | 1f2086bf2a815b1657d7a72d36dc75de767b0e8b /examples | |
parent | bbc6ec52e9ba1a030bbb503708fa2f3010efd983 (diff) | |
download | lpeglabel-1968c31ba622b8b5770b0b3fb0973d9e797959f1.tar.gz lpeglabel-1968c31ba622b8b5770b0b3fb0973d9e797959f1.tar.bz2 lpeglabel-1968c31ba622b8b5770b0b3fb0973d9e797959f1.zip |
Renaming "lpeglabelrec" to "lpeglabel", and "relabelrec" to "relabel"
Diffstat (limited to 'examples')
-rw-r--r-- | examples/expRec.lua | 4 | ||||
-rw-r--r-- | examples/expRecAut.lua | 4 | ||||
-rw-r--r-- | examples/listId1.lua | 4 | ||||
-rw-r--r-- | examples/listId2.lua | 4 | ||||
-rw-r--r-- | examples/listId2Rec2.lua | 4 | ||||
-rw-r--r-- | examples/listId2Rec2Cap.lua | 4 | ||||
-rw-r--r-- | examples/listIdRe1.lua | 2 | ||||
-rw-r--r-- | examples/listIdRe2.lua | 2 | ||||
-rw-r--r-- | examples/tiny.lua | 2 | ||||
-rw-r--r-- | examples/typedlua/tllexer.lua | 2 | ||||
-rw-r--r-- | examples/typedlua/tlparser.lua | 2 |
11 files changed, 17 insertions, 17 deletions
diff --git a/examples/expRec.lua b/examples/expRec.lua index 5c5fd7d..52bd40a 100644 --- a/examples/expRec.lua +++ b/examples/expRec.lua | |||
@@ -1,5 +1,5 @@ | |||
1 | local m = require"lpeglabelrec" | 1 | local m = require"lpeglabel" |
2 | local re = require"relabelrec" | 2 | local re = require"relabel" |
3 | 3 | ||
4 | local labels = { | 4 | local labels = { |
5 | {"ExpTermFirst", "expected an expression"}, | 5 | {"ExpTermFirst", "expected an expression"}, |
diff --git a/examples/expRecAut.lua b/examples/expRecAut.lua index f870d73..b8280a7 100644 --- a/examples/expRecAut.lua +++ b/examples/expRecAut.lua | |||
@@ -1,5 +1,5 @@ | |||
1 | local m = require"lpeglabelrec" | 1 | local m = require"lpeglabel" |
2 | local re = require"relabelrec" | 2 | local re = require"relabel" |
3 | 3 | ||
4 | local num = m.R("09")^1 / tonumber | 4 | local num = m.R("09")^1 / tonumber |
5 | local op = m.S("+-") | 5 | local op = m.S("+-") |
diff --git a/examples/listId1.lua b/examples/listId1.lua index dee46e9..b7943c1 100644 --- a/examples/listId1.lua +++ b/examples/listId1.lua | |||
@@ -1,5 +1,5 @@ | |||
1 | local m = require'lpeglabelrec' | 1 | local m = require'lpeglabel' |
2 | local re = require'relabelrec' | 2 | local re = require'relabel' |
3 | 3 | ||
4 | local id = m.R'az'^1 | 4 | local id = m.R'az'^1 |
5 | 5 | ||
diff --git a/examples/listId2.lua b/examples/listId2.lua index 46f0063..3ee89da 100644 --- a/examples/listId2.lua +++ b/examples/listId2.lua | |||
@@ -1,5 +1,5 @@ | |||
1 | local m = require'lpeglabelrec' | 1 | local m = require'lpeglabel' |
2 | local re = require'relabelrec' | 2 | local re = require'relabel' |
3 | 3 | ||
4 | local terror = {} | 4 | local terror = {} |
5 | 5 | ||
diff --git a/examples/listId2Rec2.lua b/examples/listId2Rec2.lua index c6705dd..3506095 100644 --- a/examples/listId2Rec2.lua +++ b/examples/listId2Rec2.lua | |||
@@ -1,5 +1,5 @@ | |||
1 | local m = require'lpeglabelrec' | 1 | local m = require'lpeglabel' |
2 | local re = require'relabelrec' | 2 | local re = require'relabel' |
3 | 3 | ||
4 | local terror = {} | 4 | local terror = {} |
5 | 5 | ||
diff --git a/examples/listId2Rec2Cap.lua b/examples/listId2Rec2Cap.lua index 1c22c88..32a4113 100644 --- a/examples/listId2Rec2Cap.lua +++ b/examples/listId2Rec2Cap.lua | |||
@@ -1,5 +1,5 @@ | |||
1 | local m = require'lpeglabelrec' | 1 | local m = require'lpeglabel' |
2 | local re = require'relabelrec' | 2 | local re = require'relabel' |
3 | 3 | ||
4 | local terror = {} | 4 | local terror = {} |
5 | 5 | ||
diff --git a/examples/listIdRe1.lua b/examples/listIdRe1.lua index 3988a3b..3098c66 100644 --- a/examples/listIdRe1.lua +++ b/examples/listIdRe1.lua | |||
@@ -1,4 +1,4 @@ | |||
1 | local re = require 'relabelrec' | 1 | local re = require 'relabel' |
2 | 2 | ||
3 | local g = re.compile[[ | 3 | local g = re.compile[[ |
4 | S <- Id List | 4 | S <- Id List |
diff --git a/examples/listIdRe2.lua b/examples/listIdRe2.lua index 6bab6ba..58ddedd 100644 --- a/examples/listIdRe2.lua +++ b/examples/listIdRe2.lua | |||
@@ -1,4 +1,4 @@ | |||
1 | local re = require 'relabelrec' | 1 | local re = require 'relabel' |
2 | 2 | ||
3 | local errinfo = { | 3 | local errinfo = { |
4 | {"errUndef", "undefined"}, | 4 | {"errUndef", "undefined"}, |
diff --git a/examples/tiny.lua b/examples/tiny.lua index 784e031..734536c 100644 --- a/examples/tiny.lua +++ b/examples/tiny.lua | |||
@@ -1,4 +1,4 @@ | |||
1 | local re = require 'relabelrec' | 1 | local re = require 'relabel' |
2 | 2 | ||
3 | local terror = {} | 3 | local terror = {} |
4 | 4 | ||
diff --git a/examples/typedlua/tllexer.lua b/examples/typedlua/tllexer.lua index d6033ec..96f296d 100644 --- a/examples/typedlua/tllexer.lua +++ b/examples/typedlua/tllexer.lua | |||
@@ -1,6 +1,6 @@ | |||
1 | local tllexer = {} | 1 | local tllexer = {} |
2 | 2 | ||
3 | local lpeg = require "lpeglabelrec" | 3 | local lpeg = require "lpeglabel" |
4 | lpeg.locale(lpeg) | 4 | lpeg.locale(lpeg) |
5 | 5 | ||
6 | local tlerror = require "tlerror" | 6 | local tlerror = require "tlerror" |
diff --git a/examples/typedlua/tlparser.lua b/examples/typedlua/tlparser.lua index fe4fd5e..a301fa6 100644 --- a/examples/typedlua/tlparser.lua +++ b/examples/typedlua/tlparser.lua | |||
@@ -1,6 +1,6 @@ | |||
1 | local tlparser = {} | 1 | local tlparser = {} |
2 | 2 | ||
3 | local lpeg = require "lpeglabelrec" | 3 | local lpeg = require "lpeglabel" |
4 | lpeg.locale(lpeg) | 4 | lpeg.locale(lpeg) |
5 | 5 | ||
6 | local tllexer = require "tllexer" | 6 | local tllexer = require "tllexer" |