A parser generator for JavaScript.
0
votes
0answers
43 views
“Combine” logical expression and return the subexpressions
I need to write an algorithm that takes a logical expression as input, combines its operators and returns the subexpressions.
Some examples of what I need:
foo -> ["foo"]
foo bar -> ...
0
votes
2answers
52 views
“IF ELSE” statement inside basic calculator
I’m trying to implement my own calculator with “IF ELSE” statements.
Here is the basic calculator example:
/* description: Parses end executes mathematical expressions. */
/* lexical grammar */
...
0
votes
2answers
53 views
Where is this shift/reduce conflict coming from in Bison?
I am trying to get the hang of parsing by defining a very simple language in Jison (a javascript parser). It accepts the same / very similar syntax to bison.
Here is my grammar:
%token INT TRUE ...
2
votes
1answer
84 views
Debugging in Jison
I'm using Jison to write a parser. This is my grammar:
{
"program": [
["statements EOF", "return $1;"]
],
"statements": [
["statement", "$$ = $1;"],
...
3
votes
0answers
79 views
How do you match zero or more tokens in Jison?
I'm writing a simple expression parser in Jison allowing an arbitrary number of newlines to follow a binary operator in an expression. This is my grammar so far:
{
"operators": [
["left", ...
3
votes
1answer
94 views
How is this grammar ambiguous?
I'm writing a simple expression parser in Jison. Here's my grammar:
{
"operators": [
["left", "+", "-"],
["left", "*", "/", "%"]
],
"bnf": {
"program": [
...
0
votes
2answers
75 views
Dynamic parser - read tokens from a separate file
Let's say I want to parse my new language that looks like this:
main.mylang
import "tags.mylang"
cat dog bacon
And there's another file tags.mylang that looks like this:
cat "meow"
dog "woof"
...
2
votes
1answer
115 views
SyntaxError in Jison parser
I'm trying to write a parser using Jison that'll parse the output of the javap tool. Here's the contents of my .jison file:
%lex
%x classfile
%%
"Classfile" { ...
0
votes
1answer
81 views
Is this grammar ambiguous?
I'm trying to define a language using Jison with very little punctuation for delimitation - like CoffeeScript but without the indentation. This is sort of what I want to achieve:
# Definition
...
1
vote
1answer
96 views
Looking for examples of Jison grammars that use indentation for block-structure
Has anyone got a simple example of how to define a grammar that parses python-like indentation for blocks using Jison?
1
vote
1answer
131 views
Adding declarations to JISON
I have here an only slightly modified version of the JISON calculator example:
/* description: Parses end executes mathematical expressions. */
/* lexical grammar */
%lex
%%
\s+ ...
1
vote
1answer
527 views
Grammar spec resolving Shift/Reduce conflicts
I'm using Jison (Bison) to create a simple markup language. I'm clearly new to this, but slight variations are working very well. I just don't understand the source of the S/R conflict.
It doesn't ...
2
votes
1answer
163 views
Escape character grammar
I want to create a Jison (Bison) grammar for a markup language that allows escaping of markup delimiters.
These would be valid:
I like apples
I like [apples, oranges, pears]
I like [apples, oranges, ...
0
votes
1answer
143 views
Expression AST Parser from Expression Interpreter demo
I'm trying to modify this "Calculator" Jison example to be an expression parser rather than an expression interpreter. I want to output a JSON object that describes the expression instead of ...
3
votes
1answer
278 views
How to avoid conflicts in grammar
I have a grammar file — https://github.com/itrelease/fubar-script/blob/jsast/src/grammar.js but I get conflicts and I don't really know how to solve this. If someone could explain me it would be ...
3
votes
1answer
249 views
How to get line number from an AST node (Jison)
I'm using Jison to build a simple calculator language, which includes variables. I want these variables to work similar to JavaScript, that is you have to initialise it with the var keyword the first ...
1
vote
2answers
242 views
How to run Jison tests with Node.js?
Trying to run Jison unit tests, but the command fails.
How do I fix that?
$ git clone git://github.com/zaach/jison.git
Cloning into 'jison'...
remote: Counting objects: 2667, done.
remote: ...
1
vote
2answers
122 views
Implicit precedence
I'm reading book — "Flex and Bison" to understand how parser generators work and there is example:
calclist: /* nothing */
| calclist exp EOL { printf("= %d\n", $1); }
;
exp: factor
...
2
votes
1answer
278 views
bison precedence (actually using jison but it should be the same)
I'm using jison (a javascript equivalent of Bison) and I'm having the following precedence problem. I'll illustrate it using the calculator demo
http://zaach.github.com/jison/try/
It works fine as ...
7
votes
1answer
874 views
How to get Abstract Syntax Tree (AST) out of JISON parser?
So I have generated a parser via JISON:
// mygenerator.js
var Parser = require("jison").Parser;
// a grammar in JSON
var grammar = {
"lex": {
"rules": [
["\\s+", "/* skip ...
