Tagged Questions
Abstract syntax trees (ASTs) represent the recursive structure of a formal document (program source code).
15
votes
6answers
2k views
What is the difference between an Abstract Syntax Tree and a Concrete Syntax Tree?
I've been reading a bit about how interpreters/compilers work, and one area where I'm getting confused is the difference between an AST and a CST. My understanding is that the parser makes a CST, ...
10
votes
7answers
2k views
Best/fastest way to write a parser in c#
What is the best way to build a parser in c# to parse my own language?
Ideally I'd like to provide a grammar, and get Abstract Syntax Trees as an output.
Many thanks,
Nestor
9
votes
4answers
151 views
Ada short-circuit control forms
Whats the meaning of
x AND THEN y AND z
is it
x AND THEN (y AND z)
(y, z gets never evaluated if x is FALSE)
or
(x AND THEN y) AND z
(if x is FALSE, y is skipped, but its possible that z is ...
9
votes
3answers
2k views
Building own C# compiler using ANTLR: Compilation Unit
// Create a scanner that reads from the input stream passed to us
CSLexer lexer = new CSLexer(new ANTLRFileStream(f));
tokens.TokenSource = lexer;
// Create a parser that reads from the scanner
...
9
votes
2answers
2k views
How can I use the java Eclipse Abtract Syntax Tree in a project outside Eclipse? (ie not an eclipse plugin)
How can I use the java Eclipse Abtract Syntax Tree in a project outside Eclipse? (ie not an eclipse plugin)
All the Eclipse AST examples that I've seen are for eclipse plugins. Is there a way (ie an ...
8
votes
1answer
209 views
Python code generator
I want to be able to perform code generation of python given an AST description.
I've done static analysis of C and built AST visitors in python, so I feel relatively comfortable manipulating a ...
8
votes
1answer
813 views
Can I get AST from live scala code?
I said "live code" because I mean not from text source files or source strings, but from partialFunctions / lambdas. (I know Ruby1.8's parseTree and C# linq can do it)
consider a partialFunction f:
...
7
votes
2answers
2k views
How to write the Visitor Pattern for Abstract Syntax Tree in Python?
My collegue suggested me to write a visitor pattern to navigate the AST. Can anyone tell me more how would I start writing it?
As far as I understand, each Node in AST would have visit() method (?) ...
7
votes
5answers
1k views
F# parsing Abstract Syntax Trees
What is the best way to use F# to parse an AST to build an interpreter? There are plenty of F# examples for trivial syntax (basic arithmatical operations) but I can't seem to find anything for ...
7
votes
3answers
1k views
javac.exe AST programmatic access example
Is it possible to access the Abstract Syntax Tree(AST) inside the javac.exe programmatically? Could you provide an example?
6
votes
4answers
235 views
How a AST for an object oriented programming language would look like?
I'm reading about AST but all the samples I see use expressions such as:
a + b * c
Which could be represented in a lispy like syntax as:
(+ a (* b c) )
Which will be the equivalent to:
+
...
6
votes
4answers
183 views
A parser for regular expressions in PHP?
I need to parse regular expressions into their components in PHP. I have no problem creating the regular expressions or executing them, but I want to display information about the regular expression ...
6
votes
3answers
220 views
Given an AST, is there a working library for getting the source?
Is there a way to convert a given Python abstract syntax tree (AST) to a source code?
Here is a good example of how to use Python's ast module, specifically a NodeTransformer. I was looking for a way ...
6
votes
4answers
627 views
Best design for generating code from an AST?
I'm working on a pretty complex DSL that I want to compile down into a few high level languages. The whole process has been a learning experience. The compiler is written in java.
I was wondering ...
6
votes
3answers
783 views
string to abstract syntax tree
I would like to convert a string containing a valid Erlang expression to its abstract syntax tree representation, without any success so far.
Below is an example of what I would like to do. After ...
6
votes
2answers
1k views
Python Best Practices: Abstract Syntax Trees
Modifying Abstract Syntax Trees
I would like to be able to build and modify an ast and then optionally write it out as python byte code for execution later without overhead.
I have been hacking ...
6
votes
11answers
3k views
Translate C# code into AST?
Is it currently possible to translate C# code into an Abstract Syntax Tree?
Edit: some clarification; I don't necessarily expect the compiler to generate the AST for me - a parser would be fine, ...
5
votes
3answers
113 views
How to interact with the compiler in Scala code itself?
I wonder how many ways exist to interact with the Scala compiler outside of the normal “invoke it on the command line to compile my sources”.
Is there is some way to parse code, build an abstract ...
5
votes
4answers
187 views
Reflections for C language?
The question title might be misleading when read out of context. Let me first explain what I am trying to build.
I am building a script which will take 100s of very simple C programs written by my ...
5
votes
6answers
260 views
Are there any non-Lisp dialects that allow for syntactic abstraction?
As Rich Hickey says, the secret sauce of Lisp languages is the ability to directly manipulate the Abstract Syntax Tree through macros. Can this be achieved in any non-Lisp dialect languages?
5
votes
2answers
643 views
What is the difference between parse tree and syntax tree?
I just went through Compiler design book. Sometimes it says about parse tree and sometimes about syntax tree. I searched about it in the internet. What I found is parse tree is concrete syntax tree. ...
5
votes
3answers
194 views
How hard is it to write an interpreted language assuming you have an AST?
I already have a parser for a language I've been working on. Is making it interpreted difficult? I was thinking its simple. The parsing and syntax check is done. I just have a tree of objects. ...
5
votes
5answers
2k views
Scala AST in Scala
Is there a Scala library that parses Scala and creates an Abstract Syntax Tree (AST)?
Ideally I am interested in a Scala library. Plan B would be a Java library.
(I know I could leverage the EBNF ...
4
votes
1answer
87 views
Why does Python insert None into slice steps?
This can best be illustrated by example (all examples assume ast is imported; note that I am using Python 2.7.1):
# Outputs: Slice(lower=Num(n=1), upper=Num(n=10), step=None)
...
4
votes
1answer
171 views
Transform an Abstract Syntax Tree (AST) in F#
I am trying to design an AST for a decision logic table. One of the things I would like to be able to do with the discriminated union that represents my AST is transform parts of it for different ...
4
votes
2answers
310 views
Abstract-syntax tree for subset of C
For teaching purpose we are building a javascript step by step interpreter for (a subset of) C code.
Basically we have : int,float..., arrays, functions, for, while... no pointers.
The javascript ...
4
votes
2answers
346 views
Recursive descent parser questions
I have two questions about how to write a recursive descent parser:
The first is what when you have a nonterminal that can match one of a few different nonterminals? How do you check which way is ...
4
votes
4answers
276 views
How to evaluate and process a simple string syntax-tree in C#?
I have a corpus of token-index based documents which offers a query method. The user manually(!) enters a query string which needs to be parsed and evaluated. The corpus should then return a list of ...
4
votes
2answers
182 views
Is it possible the get the AST for an OCaml program?
I'd like to be able to get the AST for a given OCaml program (I'd like to walk the AST and generate an instrumented version of the code or do some kind of transformation, for example). Do any of the ...
4
votes
3answers
442 views
Abstract syntax tree question
I am currently working on a compiler under C and I am abit lost at the part where we construct the data structure for AST, especially for the part where we construct stucture for IDs, it is called ...
4
votes
2answers
1k views
Simple example of how to use ast.NodeVisitor?
Does anyone have a simple example using ast.NodeVisitor to walk the abstract syntax tree in Python 2.6? The difference between visit and generic_visit is unclear to me, and I cannot find any example ...
3
votes
1answer
93 views
Recursive parsing based on level numbers
I have a tricky question (at least in my perspective), regarding Scalas parser combinators and recursive parsing. I currently building a small parser which should be able to parse PL/1 structures like ...
3
votes
2answers
70 views
Implementing goto in an ast
Background:
As a short project over winter break, I'm trying to implement a programming language called Axe (designed for graphing calculators) using Python and PLY. A brief note: the language allows ...
3
votes
3answers
121 views
Parsing Java source code with C++
I would like to create an Java source code parsing functionality in C++. The purpose of this application is to generate a syntax tree into the internal data structure so that I am able to walk the ...
3
votes
2answers
65 views
API to compare AST?
Is there a open source java api that allows to compare two Abstract Syntax Trees of java source code?
I would like to see the differences between the two syntax trees, similar to how it is done in ...
3
votes
2answers
95 views
How can I compile CoffeeScript AST into CoffeeScript instead of JavaScript?
Is it possible to turn the AST back into CoffeeScript instead of into JavaScript? A project I am working basically requires turning all the CoffeeScript into the AST, analysing the AST, then turning ...
3
votes
2answers
202 views
What does Lambda Expression Compile() method do?
I am trying to understand AST in C#. I wonder, what exactly Compile() method from this example does.
// Some code skipped
Expression<Func<string, int, int, string>> data = ...
3
votes
1answer
120 views
Objective C parser with modifiable AST (like NRefactory for c#)
I am looking for something in Objective C that creates an AST out of objective c code that is modifiable. It would also be great if it also implements the visitor pattern for the AST. Basically ...
3
votes
1answer
203 views
Python: deeply copy ast node tree
I'm trying to use deepcopy (from the copy module) to deeply copy a node tree from the ast module.
This doesn't seem to work. I'm getting strange errors like TypeError: required field "name" missing ...
3
votes
1answer
178 views
Converting AST to Byte code
I am trying to learn to build a simple compiler as a hobby. I am targeting the Java virtual machine.
I have written a simple grammar using ANTLR plugin for Eclipse .
Someone told me that there is ...
3
votes
2answers
314 views
Convert Scala AST to source code
Given a Scala AST, is there a way to generate Scala source code?
I'm looking into ways to autogenerate Scala source by parsing/analyzing other Scala source. Any tips would be appreciated!
3
votes
1answer
230 views
Producing squiggles using your abstract-syntax-tree
The situation:
I have crafted a scanner, parser and various AST classes for a little used programming language, a hobby project of mine. The parser, with the help of the scanner, builds a ...
3
votes
1answer
344 views
ANTLR - trouble getting AST hierarchy setup
I am trying to get my head around the tree construction operators (^ and !) in ANTLR.
I have a grammar for flex byte arrays (a UINT16 that describe number of bytes in array, followed by that many ...
3
votes
3answers
337 views
AST traversal in visitor or in the nodes?
Update accepted Ira Baxter's answer since it pointed me into the right direction: I first figured out what I actually needed by starting the implementation of the compiling stage, and it became ...
3
votes
3answers
185 views
Associativity and Precedence of Expressions when Generating C / C++ Code?
I have written a basic compiler which generates an AST, correctly taking account of the operator precedence in expressions. However, when performing code generation to produce C++ code, I'm unsure of ...
3
votes
4answers
385 views
What's the use of abstract syntax trees?
I am learning on my own about writing an interpreter for a programming language, and I have read about Abstract Syntax Trees. I have an idea of what they are, but I do not see their use.
Why are ASTs ...
3
votes
2answers
180 views
AST-based search for Eclipse
Is there a plug-in for Eclipse that lets you search based on the Java AST (Abstract Syntax Tree) of your project files? The "Java Search" feature doesn't seem to cover cases like:
"Get me all the ...
3
votes
4answers
329 views
Recommend C front-end that preserves preprocessor directives
I'd like to start a project that involves transforming C code, but I'd like to include the preprocessor directives. I don't want to reinvent the wheel by writing my own C parser, so does anyone know ...
3
votes
3answers
520 views
Library for programming Abstract Syntax Trees in Python
I'm creating a tree to represent a simple language. I'm very familiar with Abstract Syntax Trees, and have worked on frameworks for building and using them in C++. Is there a standard python library ...
3
votes
3answers
788 views
Tree Transformations Using Visitor Pattern
(Disclaimer: these examples are given in the context of building a compiler, but this question is all about the Visitor pattern and does not require any knowledge of compiler theory.) I'm going ...