-
### Reading list from @eternaleye
#### GLL
* https://www.sciencedirect.com/science/article/pii/S1571066110001209
* https://www.sciencedirect.com/science/article/pii/S0167642312000627
* https://cdn…
eddyb updated
5 years ago
-
bonjour
j'utilise le flux complet + brief détaillé
il manque plusieurs actus du jour dans le flux (nas rackables, vulkan, fb cloud gaming, dtk mac)
voir le flux
```xml
Next INpact- F…
-
* used right now for lexing, e.g. ensuring that an identifier (`[a-zA-Z][a-zA-Z0-9]*` in regex) is not followed by more identifier characters (`(?![a-zA-Z0-9])` in some regex dialects), forcing the ru…
eddyb updated
5 years ago
-
- [ ] Existing solution investigation
- [ ] Metrics for evaluation and comparison
- [ ] Gaps and problems
- Firs step: SQL (we have a grammar)
- [ ] Use Kdiff for textual diff
- [ ] Bui…
-
Student accidentally writes `raises` instead of `raise`, tries several variants, all give relatively useless parsing errors.
It would be nice if they at least got feedback saying "`raises` is a keywo…
-
SPPF comment in issue
https://github.com/oasis-tcs/openc2-apsc-stateless-packet-filter/issues/23 also applies to Language Specification and response should be coordinated (ie can't change SLFP unles…
-
I have a very small example of an ambiguity in a parser:
```python
from lark import Lark
l = Lark(
'''start: GENERIC | SPECIFIC
GENERIC.2: /\w+/
SPECIFIC.1: "HelloWorld"
''', parser="earley",…
-
How to
- http://blog.mavnn.co.uk/type-providers-from-the-ground-up/
- https://github.com/fsprojects/FSharp.TypeProviders.StarterPack
- Scannerless GLL
- Exclude generation step.
Expected resul…
-
I am writing a parser for a configuration file format. Here is the grammar that I have written
```
start: expr*
%import common.CNAME
%import common.ESCAPED_STRING
%import common.SIGNED_…
-
Perhaps related to #191
When using the earley parser with weighted terminals, the result is still non-deterministic in certain cases.
Example:
```
from lark import Lark
grammar = """
root…