Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
744 views

Generate syntax tree for simple math operations

I am trying to generate a syntax tree, for a given string with simple math operators (+, -, *, /, and parenthesis). Given the string "1 + 2 * 3": It should return an array like this: ["+", [1, ...
7
votes
4answers
139 views

Javascript syntax test cases

I'm creating a text editor and I've just finished writing the highlighting algorithms to have each of the syntax appear in a different color, and render in the right position using the proper parse ...
4
votes
2answers
180 views

Does a line profiler for code require a parse tree and is that sufficient?

I am trying to determine what is necessary to write a line profiler for a language, like those available for Python and Matlab. A naive way to interpret "line profiler" is to assume that one can ...
4
votes
2answers
151 views

C/C++ library for lazy evaluation of SIMD/SSE expressions

Libraries such as intel-MKL or amd-ACML provide easier interface to SIMD operations on vectors, but I want to chain several functions together. Are there readily available libraries where I can ...
3
votes
2answers
348 views

What's the difference between parse tree and AST?

Is it generated by difference phase of a compiling process? Or just difference names for the thing?
3
votes
1answer
228 views

Boost::Spirit::Qi autorules — avoiding repeated copying of AST data structures

I've been using Qi and Karma to do some processing on several small languages. Most of the grammars are pretty small (20-40 rules). I've been able to use autorules almost exclusively, so my parse ...
3
votes
1answer
269 views

Is it possible to use Recursive Descent Parser to both verify the grammar AND build the parse tree at the same time?

Is it possible to generate a parse tree at the same time as I use recursive descent parser to check if the data matches grammar? If so, what approach would I use to build a tree as I recursively ...
2
votes
1answer
85 views

What is the different between abstract parse tree and parse tree? [closed]

Possible Duplicate: What's the difference between parse tree and AST? i need to know what is the different between abstract parse tree and parse tree
1
vote
1answer
53 views

expression parser in ANTL3 targetting Javascript

I have started playing with ANTL3, I found it very cool, it's support for multiple languages is awesome. Right now I am experimenting with Javascript. I've extended the grammar found @ antlr3 - ...
1
vote
1answer
68 views

Is it possible to to visualize a PL/SQL parse tree?

I'm looking for a means of somehow exporting or visualizing the parse tree of an arbitrary PL/SQL object in Oracle in such a way as to allow comparison between the parse trees of two similar objects. ...
1
vote
3answers
86 views

Grammar Parse tree?

This question is on my CS homework and I have no idea how to do it. Consider the grammar S ← ( L ) S ← a L ← L , S L ← S Draw a parse tree for the sentence ( a , ( a , a ) ) I tried following ...
1
vote
1answer
580 views

antlr3 - Generating a Parse Tree

I'm having trouble figuring out the antlr3 API so I can generate and use a parse tree in some javascript code. When I open the grammar file using antlrWorks (their IDE), the interpreter is able to ...
1
vote
1answer
431 views

Tool for drawing parse trees?

Does anyone have a good tool for drawing parse trees arising from a context-free grammar? There is this question, but it dealt specifically with finite automata instead of parse trees. I've been using ...
0
votes
0answers
63 views

Decorating parse tree using attribute grammar

Given the following attribute grammar for type declarations, I need to be able to produce a parse tree for any given string, for example "A, B : C;", and then decorate the tree. I can generally do ...
0
votes
1answer
157 views

How do you convert the following ambiguous grammar to unambiguous?

I understand how the difference between the two, how ambiguity means that there is at least one string with 2 distinct parse trees while there is only one in an unambiguous tree. But I can't seem to ...
0
votes
0answers
156 views

Translate oz code to kernel language

How to translate this part of Oz code to kernel language and how to draw parse tree of translated code? This is my homework on Tuesday. :-) f(a Q W) = f(A q W)
0
votes
3answers
2k views

How to turn a token stream into a parse tree

I have a lexer built that streams out tokens from in input but I'm not sure how to build the next step in the process - the parse tree. Does anybody have any good resources or examples on how to ...