Tagged Questions
AST is an abbreviation for Abstract Syntax Tree. (Use "abstract-syntax-tree" tag instead of AST tag, please).
46
votes
5answers
3k views
How to translate between programming languages
I am setting out to do a side project that has the goal of translating code from one programming language to another. The languages I am starting with are PHP and Python (Python to PHP should be ...
28
votes
4answers
6k views
Python - Parse a .py file, read the AST, modify it, then write back the modified source code
I want to programmatically edit python source code. Basically I want to read a .py file, generate the AST, and then write back the modified python source code (i.e. another .py file).
There are ways ...
19
votes
2answers
1k views
Example for ast.NodeTransformer that mutates an equation
This is a continuation of my last question. I want to parse an equation and work on the ast I get. What I want to do is basically randomly scramble it so I get a new equation, that has to be also a ...
12
votes
11answers
4k views
AST from C code
I want to perform some transformations on C source code. I need a tool on linux that generates a complete AST from the source code so that I can apply my transformations on this AST and then convert ...
10
votes
6answers
809 views
Coalescing regular expressions in PHP
Suppose I have the following two strings containing regular expressions. How do I coalesce them? More specifically, I want to have the two expressions as alternatives.
$a = '# /[a-z] #i';
$b = '/ Moo ...
7
votes
2answers
256 views
Writing a compiler: how to get simple templates to work?
I have a language with a very C++-like syntax. The lexer and parser are in place and produce the correct AST. For the largest part the backend is also done.
The basic system the compiler uses to ...
7
votes
5answers
1k views
How to make use of Clang's AST?
I am looking at making use of the Clang's AST for my C code and do some analysis over the AST. Some pointers on where to start, how to obtain the clang's AST, tutorials or anything in this regard will ...
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
2answers
117 views
Generate .pyc from Python AST?
How would I generate a .pyc file from a Python AST such that I could import the file from Python?
I've used compile to create a code object, then written the co_code attribute to a file, but when I ...
6
votes
1answer
403 views
Compiling an AST back to source code
I'm currently in the process of building a PHP Parser written in PHP, as no existing parser came up in my previous question. The parser itself works fairly well.
Now obviously a parser by itself does ...
6
votes
1answer
1k views
Can I get an XML AST dump of C/C++ code with clang without using the compiler?
I managed to compile successfully clang for windows with cmake and visual studio 10. That was really a childplay so far. I would like to get an XML file as AST representation of the source code. There ...
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
6answers
2k views
Abstract Syntax Tree
I have an AST derived from the ANTLR Parser Generator for Java. What I want to do is somehow construct a control flow graph of the source code, where each statement or expression is a unique Node. I ...
5
votes
4answers
86 views
Getting AST for C++?
I'm looking to get an AST for C++ that I can then parse with an external program. What programs are out there that are good for generating an AST for C++? I don't care what language it is implemented ...
5
votes
2answers
106 views
gppg/gplex equivalent in D?
When I was working in C#, I found the gppg and gplex parser/lexer generators to be perfect for my needs. I'm wondering if there's something similar for the D programming language (i.e. a utility that, ...
5
votes
1answer
134 views
How to deal with Treetop left-recursion
I have a grammar file for a new general-purpose programming language I'm trying to build. I'm trying to make the language robust and natural to use (it is heavily inspired by Ruby, among others), and ...
5
votes
5answers
282 views
Best way to parse Java in Java
As the title says, I want to parse some Java source code in Java. I'm pretty sure there are other java libraries that already perform this, but I couldn't find any.
5
votes
4answers
400 views
Utilities to generate an XML representation of a Java package/class?
I'm looking to generate an XML representation of the AST for a given java class (by parsing its source). Overall, what I want to do is write XSLT queries to find meta patterns in the source code - ...
5
votes
5answers
719 views
How to Represent Classes in an Abstract Syntax Tree Based Interpreter
I have read the related questions, but none of them appears to address the question directly. I am working on writing a PHP script interpreter. I have the AST generating proper nodes for everything ...
4
votes
3answers
176 views
Clang : What does AST (abstract syntax tree) look like?
Hi I am new in Compiler development, and am wondering how AST look like. I have a small section of code, and I use Clang for generating the AST. I don't get much information out of it.
From the looks ...
4
votes
2answers
135 views
possibilities for fast dynamic code execution in Python
I have some code available in some form of AST and I would like to execute it.
I can think of several ways to do this, e.g.:
Just straight-forwardly interpret it.
Translate it into a Python AST ...
4
votes
2answers
115 views
Change operator precedence in Groovy
I there any way to change operator precedence in Groovy like it is done in Haskell?
For example I have a class:
class A(){
def rightShift(a) {
...
}
def and(a) {
...
...
4
votes
1answer
80 views
Why can't I do a method call after a @Grab declaration in a Groovy script?
I'm trying to build a DSL and using a Global AST Transform to do it. The script is compiling with groovyc fine, but I'd like to be able to be able to have a user use Grab/Grape to pull the JAR and ...
4
votes
2answers
837 views
Python ast module
I'm playing with python ast (abstract syntax tree).
I wrote the following and it visited all nodes of the AST.
import ast
class Py2Neko(ast.NodeVisitor):
def generic_visit(self, node):
...
4
votes
1answer
961 views
How to output the AST built using antlr?
I'm making a static analyzer for c.
I have done the lexer and parser using antlr in which generates Java code.
Does antlr build the AST for us automatically by option{output=AST;}? Or do I have to ...
4
votes
3answers
503 views
How to access comments from the java compiler tree api generated ast?
I've used the java compiler tree api to generate the ast for java source files. However, i'm unable to access th comments in the source files.
So far, i've been unable to find a way to extract ...
4
votes
1answer
250 views
Generating scala AST for recursive method
I am generating the scala AST using the following code:
val setting = new Settings(error)
val reporter = new ConsoleReporter(setting, in, out) {
override def displayPrompt = ()
}
...
4
votes
1answer
872 views
Python AST processing
I have a Python AST [as returned by ast.parse()].
I know this is an AST of a class method.
How do I find all calls to other methods of the same class?
Basically, I want to collect something like:
...
3
votes
1answer
51 views
Difference between @Delegate and @Mixin AST transformations in Groovy
What's the difference between @Delegate and @Mixin AST transformations in Groovy.
Maybe my question has to do with OO and when apply different patterns, but I use both and I can achieve the same ...
3
votes
1answer
146 views
Compile python AST to method
I have been experimenting with ASTs in python. I want to modify methods by transforming the ASTs at runtime.
I can get the source of an pre-compiled method using inspect.getsource(), and
I can modify ...
3
votes
1answer
81 views
Extract the AST from a Ruby block
Is it possible to grab the AST of a block from Ruby itself?
I've had a look at both ParseTree and ruby_parser, but they both seem to have sketchy support (from what I've read) for Ruby 1.9.2. I need ...
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
102 views
ANTLR AST tree - searching for specific nodes
I have an AST built based on a parser grammar. Now I want to search the tree to determine if specific nodes are present in the tree or not. What is the best way to do this?
a) Write a tree grammar ...
3
votes
1answer
59 views
Whitespace in Treetop grammar
How explicit do I need to be when specifying were whitespace is or is not allowed? For instance would these rules:
rule lambda
'lambda' ( '(' params ')' )? block
end
rule params
# ...
end
rule ...
3
votes
2answers
197 views
Treetop grammar infinite loop
I have had some ideas for a new programming language floating around in my head, so I thought I'd take a shot at implementing it. A friend suggested I try using Treetop (the Ruby gem) to create a ...
3
votes
1answer
251 views
set literal syntax support in Python 2.7
In the What’s New in Python 2.7 document it says that support for set literals was back-ported from Python 3.1. However it appears that this support was not extended to the ast module's literal_eval() ...
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
3answers
220 views
Python code reflection and modification
Perhaps I'm not using the proper term, but I'm looking to take a block of Python code (in Python), get the token tree for the code, make some kind of modification, and re-assemble it to Python.
For ...
3
votes
1answer
334 views
Python 3, Are there any known security holes in ast.literal_eval(node_or_string)?
Are there any known ways for ast.literal_eval(node_or_string)'s evaluation to not actually be safe?
If yes, are patches available for them?
(I already know about PyPy[sandbox], which is presumably ...
3
votes
3answers
220 views
In an AST Visitor, how can I know which node's property I am visiting?
I'm programming an AST Visitor (eclipse JDT).
An EnumDeclaration node contains the following structural properties:
JAVADOC, MODIFIERS, NAME, SUPER_INTERFACE_TYPES, ENUM_CONSTANTS and ...
3
votes
1answer
476 views
How to implement a function call with Antlr so that it can be called even before it is defined?
Once the AST is built, what is the best way implement the tree walker so that functions can be defined and called in whatever order?
For example, this is valid in PHP:
<?php
f(); // function ...
3
votes
2answers
548 views
Using the Eclipse AST
I have recently come into the need of modifying some Java code (adding methods, changing the signatures of some fields and removing methods) and I think that all of this can be accomplished though the ...
3
votes
1answer
248 views
XPath to find element based on another XPath element
I have an Java AST and I try to find a variable inside it via XPath.
Lets say the variable is called 'foobar' I could use
//VariableDeclarator/VariableDeclaratorId[@Image='foobar']
but what if I ...
3
votes
4answers
907 views
Converting Antlr syntax tree into useful objects
I'm currently pondering how best to take an AST generated using Antlr and convert it into useful objects which I can use in my program.
The purpose of my grammar (apart from learning) is to create ...
3
votes
1answer
2k views
How to construct an abstract syntax tree
I have a general idea of what an AST is, but I want to know how to construct one.
If you're given a grammar and a parse tree, how do you construct the AST?
How do you do it if you're given a grammar ...
3
votes
4answers
430 views
How do you turn an unquoted Python function/lambda into AST? 2.6
This seems like it should be easy, but I can't find the answer anywhere - nor able to derive one myself. How do you turn an unquoted python function/lambda into an AST?
Here is what I'd like to be ...
3
votes
1answer
1k views
Microsoft CCI - resources, references for writing compilers
Some time ago, I was working on compiler, I've used System.Reflection to generate code (IL) from my AST. Now, I've an idea for another compiler that I'd like to work on (it will be another pet ...
3
votes
1answer
511 views
Cannot get Groovy AST example to work
So, I am trying to learn how to use (and extend) Groovy, and I am following the example from this page. Basically, it shows how to define an annotation for Groovy code that lets you hook in to the ...
3
votes
2answers
537 views
Eclipse Abstract Syntax Tree Programmatic Access
Could you provide an example of accessing the Eclipse Abstract Syntax Tree programmatically for a given piece of code?
eg getting the AST for:
Class1.java
package parseable;
public class Class1 ...
2
votes
2answers
26 views
traversing an ast having complex conditional expression to generate linq expression
I'm using Irony.net for generating a parse tree out of the source. Essentially I'm using ExpressionEvaluatorGrammer like grammer for binary expressions (arithmetic, relational and ...