Futago-za Ryuu
abadaf4d5d
Add test for empty grammars
...
This add's a test that ensures grammars without any rules are not accepted.
2017-10-20 19:01:19 +01:00
Futago-za Ryuu
96a386ff15
Merged documents for test suites
2017-10-15 02:36:10 +01:00
Futago-za Ryuu
5c36738a52
Rewrote test/impact as a Node.js script
...
"test/impact" was a bash script before, and used tools spefic to some systems, which required Window users to have more software installed.
This rewrite removes the bash script and add's a cross platform Node.js script that doesn't depend on platform-spefic tools.
2017-10-06 07:49:52 +01:00
Futago-za Ryuu
08bbd6d5b6
Moved "eslint-env node" to the root
...
It seem's kind of pointless setting the comment "/* eslint-env node */" at the top of only some JavaScript files when nearly all of them are Node.js releated, so I moved this option to the root level config, only leaving the 'lib' folder as "/* eslint-env commonjs */"
2017-10-02 06:32:20 +01:00
Futago-za Ryuu
5a833bd982
Moved all spec and benchmark tests
...
- Moved benchmark to test/benchmark
- Moved tests to test/spec
- Removed individual servers
- Implemented single test server
- Moved server assets to test/server
- Updated Gulpfile.js
- Moved tools/impact to test/impact
This commit move's nearly all code related to testing the PEG.js module into the test directory, and also ensures they run as they did before the move.
2017-10-02 04:35:46 +01:00
felix
cb3c5f4473
Improve error message for unbalanced brace. ( #534 )
...
Currently, an open brace without a corresponding brace will emit this confusing error message:
> Expected "!", "$", "&", "(", "*", "+", ".", "/", "/*", "//", ";", "?", character class, code block, comment, end of line, identifier, literal, or whitespace but "{" found.
This change adds an error case to the grammar to make it clear what the problem is.
2017-09-15 21:36:19 +01:00
felix
ee00a1ae6a
Check allowedStartRules exist. ( #532 )
...
Fixes #524
2017-09-12 21:21:35 +01:00
felix
958e15879d
Reimplement offset() and add range(). ( #528 )
...
* Reimplement offset()
* Implement range()
Fixes #526 , thanks @felix9
2017-09-04 05:48:17 +01:00
Futago-za Ryuu
57bb28414e
Merge pull request #509 from Mingun/simplify-bc
...
Simplify bytecode: remove unnecessary opcode.
2017-08-24 04:17:45 +01:00
Futago-za Ryuu
55bcaa46ef
Updated ESLint configuration files
...
- added "root" option to main config
- moved "env.commonjs" to root
2017-07-22 15:45:10 +01:00
Mingun
575db38d1f
Simplify bytecode: remove unnecessary opcode.
...
Now generated sources looks little better :)
2017-06-24 22:36:21 +05:00
David Majda
205c55d309
Tests: s/Spec/Test/
...
Missed in f5a372b075
(I probably grepped
case-sensitively).
2016-12-16 16:45:34 +01:00
David Majda
2942fa1867
Tests: Make tracing tests more specific
...
Check that the console and the default tracer are called with specific
arguments in given order. Previously the order of calls wasn't checked.
2016-12-16 14:25:41 +01:00
David Majda
9cc35d2cab
Tests: DRY up tracing tests
2016-12-16 14:14:05 +01:00
David Majda
5d6bd75619
Tests: Use "to.be.{a,an}" instead of "expect(typeof ...)"
2016-12-16 13:43:22 +01:00
David Majda
6817f3b964
Tests: Require specific modules instead of the whole library
...
Requiring the whole library was a relict from the time where the tests
were exercising the browser build when run in the browser.
2016-12-16 13:21:48 +01:00
David Majda
f5a372b075
Use "test" and "tests" instead of "spec" and "specs"
...
This reflects a convention used in most JavaScript projects. The change
involves renaming the "spec" directory, Gulp task, etc.
2016-12-08 10:05:17 +01:00
David Majda
23e04bb4f4
Jasmine: Delete remains the old test suite
2012-05-06 19:05:38 +02:00
David Majda
8ef5f08c90
Jasmine: Convert |removeProxyRules| compiler pass tests
2012-05-06 19:05:38 +02:00
David Majda
eaf2af8e7b
Jasmine: Convert |computeParams| compiler pass tests
2012-05-06 19:05:38 +02:00
David Majda
4edc9982cc
Jasmine: Convert |computeVarNames| compiler pass tests
2012-05-06 19:05:38 +02:00
David Majda
1471df9a69
Jasmine: Convert |reportLeftRecursion| compiler pass tests
2012-05-06 19:05:38 +02:00
David Majda
2889ca72fc
Jasmine: Convert |reportMissingRules| compiler pass tests
2012-05-06 19:05:38 +02:00
David Majda
e030834a0e
Delete test/compiler-test.js
2012-05-06 19:05:38 +02:00
David Majda
112e4122d0
Jasmine: Convert remaining error reporting tests
2012-05-06 19:05:38 +02:00
David Majda
94aaf4ec75
Jasmine: Convert error position reporting tests
2012-05-06 19:05:38 +02:00
David Majda
1825dd4a42
Jasmine: Convert start rule tests
2012-05-06 19:05:37 +02:00
David Majda
68bfeac134
Jasmine: Drop the idempotence test
...
The code this test covered is long gone.
2012-05-06 19:05:37 +02:00
David Majda
f61813238d
Jasmine: Convert complex example tests
2012-05-06 19:05:37 +02:00
David Majda
022a51f94e
Jasmine: Convert cache tests
2012-05-06 19:05:37 +02:00
David Majda
e9f7255d47
Jasmine: Convert initializer tests
2012-05-06 19:05:37 +02:00
David Majda
f5f40f68d2
Jasmine: Convert choice matching tests
2012-05-06 19:05:37 +02:00
David Majda
1b0789fbae
Jasmine: Convert sequence matching tests
2012-05-06 19:05:37 +02:00
David Majda
ae8a89c9e4
Jasmine: Convert labeled matching tests
2012-05-06 19:05:37 +02:00
David Majda
b013ba8cc9
Jasmine: Convert simple and matching tests
2012-05-06 19:05:37 +02:00
David Majda
343e9db525
Jasmine: Convert simple not matching tests
2012-05-06 19:05:37 +02:00
David Majda
2bb25efa44
Jasmine: Convert semantic and code tests
2012-05-06 19:05:37 +02:00
David Majda
f04096189f
Jasmine: Convert semantic not code tests
2012-05-06 19:05:37 +02:00
David Majda
ccf31f8822
Jasmine: Convert optional matching tests
2012-05-06 19:05:37 +02:00
David Majda
669668fc1b
Jasmine: Convert zero or more matching tests
2012-05-06 19:05:37 +02:00
David Majda
1ab06ff906
Jasmine: Convert one or more matching tests
2012-05-06 19:05:37 +02:00
David Majda
03716a562d
Jasmine: Convert action code tests
2012-05-06 19:05:37 +02:00
David Majda
b06bd774f5
Jasmine: Convert rule reference matching tests
2012-05-06 19:05:36 +02:00
David Majda
14c11b4dfc
Jasmine: Convert class matching tests
2012-05-06 19:05:36 +02:00
David Majda
75ab03dc85
Jasmine: Convert any matching tests
2012-05-06 19:05:36 +02:00
David Majda
ec48742032
Jasmine: Convert literal matching tests
2012-05-06 19:05:36 +02:00
David Majda
feddd10190
Jasmine: Delete test/parser-test.js
2012-05-06 19:05:36 +02:00
David Majda
94205ab639
Jasmine: Convert tests of parser's "grammar" rule
2012-05-06 19:05:36 +02:00
David Majda
f746189f2b
Jasmine: Convert tests of parser's "initializer" rule
2012-05-06 19:05:36 +02:00
David Majda
171d62fce4
Jasmine: Convert tests of parser's "rule" rule
2012-05-06 19:05:36 +02:00