Abstract syntax trees (ASTs) represent the recursive structure of a formal document (program source code).

learn more… | top users | synonyms (1)

2
votes
0answers
15 views

Trying to visualize an abstract syntax tree in graphviz dot, and it's just way too wide. How to fix?

So I'm working on a language and I wanted to, mostly out of curiosity, see if I could visualize the abstract syntax tree of a file. After some looking around I found graphviz dot, converted my AST ...
0
votes
1answer
23 views

rewriting of Z3_ast during its traversing in C++

to_expr function leads to error. Could you advise what is wrong below? context z3_cont; expr x = z3_cont.int_const("x"); expr y = z3_cont.int_const("y"); expr ge = ((y==3) && (x==2)); ge = ...
0
votes
1answer
18 views

how to save two objects of the same type in yacc union which appear at the same rule?

I am facing a problem in yacc union, it is, in short: I have declared a union like this %union{ struct R{ int col_no,line_no; int i; float f; char c; ...
0
votes
0answers
17 views

Yacc- How to write action code for assign operation with C structure node

In yacc program,how do we write the action for assign operation using c structure node? Example:- stmt: stmt stmt ';' | exp ';' {printtree();} | bool ';' {...} ...
0
votes
0answers
10 views

AST parsing, detect current scope

When parsing AST with visitor, how could visitor detect when scope changes? For example, when we are in Class node, we create Class scope, but how to detect when we leaving a class node, to close the ...
0
votes
1answer
28 views

delete node in AST base on condition

I am new to use the ANTLR. I have the ANTLR grammar which creates an AST. I want to check that if ComparisonExpr contains the FuzzyExpr then I want to delete this ComparisonExpr node and conjunction ...
0
votes
2answers
29 views

XML is language for abstract syntax?

I heard somewhere that XML is a language for abstract syntax. Now here I don't understand is that how XML can be used to specify the abstract syntax or structure or systems. Can anybody please help ...
0
votes
0answers
8 views

Java - spoon - modify AST - remove CtType

Here is the project: http://spoon.gforge.inria.fr/ I have an element of type CtElement, is there a way to remove it from the AST, so that it won't be processed to the generated java files. Best ...
1
vote
3answers
64 views

Generate code based on existing code

I'd like to generate Java code which is based on existing Java code. Here comes an example: @A class A { @A a; @A b; c; } @A class B { a; @A b; c; } A.java, B.java -(code ...
0
votes
0answers
24 views

manually create AST subtree and associated tokens without reference to token stream

I need to construct new AST subtrees including tokens that do not refer to the input token stream. I need to know how to construct non-root AST tree nodes and the tokens to attach to them. Is the ...
0
votes
0answers
17 views

Analysing setup.py python files for the correct use of the setup() method. (Static Analysis?)

I want to analyse setup.py files from a lot of packages (112000 atm). I want to know if you can exchange the possibly malicious practice of using a setup.py for a database. For this purpose i wanted ...
1
vote
2answers
33 views

move subtree from one part of AST to another

I am working on a tool to convert Oracle SQL to ANSI SQL. I have a grammar that will parse both Oracle SQL and ANSI SQL. I want to extract the Oracle outer join expressions from the where clause part ...
0
votes
1answer
25 views

Python AST - merging two ASTs

Do you have any idea how can i merge two asts using python ast? I would like to do something like this: n1 = ast.parse(input_a) n2 = ast.parse(input_b) n = merge(n1,n2) I would like create root n ...
1
vote
1answer
83 views

Language parser library written in PHP

I am looking for a language parser written in PHP. The goal is to read a custom language, not read PHP code. Basically, I want to specify a language syntax, give a code snippet and get back a ...
0
votes
1answer
52 views

Compiler: what is the best way to fill the symbol table?

I'd like to build my own compiler for tiny C language: I've already make my grammar, build an AST (abstract syntax tree) using ANTLR, and implement my symbol table (following GRosemberg code) I have ...
-1
votes
1answer
52 views

is there an ast python3 documentation? (At least for the Syntax) [closed]

Im trying to work with the ast class in python. I want to get all Function calls and their corresponding arguments. How can I Implement that? The official Documentation on python.org is really ...
1
vote
1answer
59 views

Antlr Tree Grammar to Generate Pmachine code?

I am presently working on a project to build a small c compiler to run on a pmachine. Presently, i started off using a stripped version of a full c grammar. Parsing looks okay at the moment and i used ...
1
vote
1answer
30 views

Eclipse JDT IJavaProject get root file

I have the below code fragment which returns the relevant IJavaProject from a CompiliationUnit: IJavaProject project = compilationUnit.getJavaProject(); I need to find a file in the root of the ...
1
vote
0answers
67 views

How to write Visitor Pattern for a Abstract Syntax Tree in C#?

I have 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 (?) that would somehow ...
0
votes
0answers
14 views

get filename from ASTVisitor

I am using a RecursiveASTVisitor to get the declaration statements of my code. I took inspiration from the example shown here: ...
2
votes
1answer
36 views

What is JavaScript AST, how to play with it?

Astract Syntax Tree.. I always heard that compile to SpiderMonkey AST on Github. So, is that a actual standard of JS syntax tree? And there's V8, is V8 using the same kind of AST? How can I play with ...
0
votes
2answers
91 views

Could I use LLVM for parsing Fortran?

I am a newbie to LLVM. My basic need is to parse the Fortran codes. By looking at LLVM website, it seems that LLVM can be used as a library for parsing codes. So could I use it to parse Fortran codes, ...
3
votes
1answer
78 views

Syntax Tree Generation in Clojure

I'm writing a compiler, really for educational purposes. I have generated tokens from my input and want to generate an AST. I have a function that takes the list of tokens and recurses to generate ...
0
votes
0answers
25 views

Abstract syntax tree openmodelica, access the correct datastructure

I am writing a new Template for Codegeneration for the openmodelica compiler and I have a Question about the omc data structure. I am able to abstract the name of vars, functions , etc and ...
0
votes
1answer
99 views

using flex and bison combo or generating parse tree from java bytecode

I am intending to generate parse trees from java byte codes. A typical byte code is of the following, public class org.scandroid.testing.InvokeCallArgTest extends org.scandroid.testing.SourceSink{ ...
9
votes
2answers
189 views

Representing a multiple pass Abstract Syntax Tree (AST) in C++?

I am currently exploring designing a compiler that transforms its AST in multiple stages. The idea is that starting from the parse tree, each pass transforms the tree until the resulting AST is ...
1
vote
1answer
107 views

Extracting variables and their type names (including class method variables) from Java source code [closed]

I need to write a program which will take a Java source code as an input, and will be able to extract all the variables, including class variables and also the variables defined inside the methods ...
0
votes
0answers
114 views

Bison parsing, creating syntax tree

I have some problems creating my intermediate representation with bison. I have some different structs which represent the different nodes in my syntax tree, so I organized them all together in my ...
1
vote
1answer
143 views

How to convert unpreprocessed C/C++ source to syntax tree (and back)?

I want to have a converter between this #include <ololo.h> #ifdef HAVE_QQQ #include <qqq.h> #endif char* ololize(char* s) { #ifdef HAVE_QQQ return qqq(s); #else ...
0
votes
0answers
41 views

Create an Override method with AST JDT

Hello to everyone I am writing a tool in eclipse which make use of JDT. The tool will traverse a IJavaProject and find out all the couples of SuperClass-SubClass. If there are methods in SuperClass ...
0
votes
0answers
62 views

Parse Nested Parentheses in Abstract Syntax Tree with Javacc

I am trying to parse expressions such as a*(4+5) in my parser to build the abstract syntax tree. void addSub() : {} { mulDiv() ((<ADD> mulDiv() )| (<SUB> mulDiv() ) )* } void ...
0
votes
1answer
71 views

Parsing markup into Abstract Syntax Tree using Regular Expression

This question is supplementary to: Recursive processing of markup using Regular Expression and DOMDocument The code supplied by the selected answer has been a great help to understand building a ...
0
votes
0answers
29 views

What classes and methods are not in a python test suite, statically?

Say that file.py has class C with methods M1 M2 ..., but test/*.py never calls C at all, or never calls M2. Is there a static program analysis tool that detects this, and writes a list of apparently ...
0
votes
0answers
44 views

print all the nodes of the abstract syntax tree using pyv8 python

I want to access the abstract syntax tree of the javascript code parsed using v8, pyv8 and python. also i want to access the Call graph of the abstract syntax tree. which functions of pyv8 are to be ...
2
votes
2answers
92 views

How to convert AST to JDT Java model

I am writing unit tests for my plugin that makes use of IType and IMethod interfaces from JDT. To write unit tests I would need to instantiate such interfaces. Answer to this question shows how to ...
2
votes
2answers
97 views

extract interface that a class implementing using AST parser

I am compiling a project source using AST parser. In what way i can extract class hierarchy infromation, that is whether it is implementing any interface or extends from another class?
2
votes
1answer
83 views

How can I dump an abstract syntax tree generated by gcc into a .dot file?

I think the question's title is self explanatory, I want to dump an abstract syntax tree generated by gcc into a .dot file (Those files generated by Graphviz) because then I want to view it in a .png ...
6
votes
1answer
150 views

Manipulating the V8 ast

I intend to implement a js code coverage directly in the v8 code. My initial target is to add a simple print for every statement in the abstract syntax tree. I saw that there is an AstVisitor class , ...
3
votes
2answers
133 views

Insert Linq query part inside existing query

Having the following variable which stores an IQueryable: var mainQuery = session .Query<Employee>() .Select(e => new { e.Name, e.Address }); And a method ...
2
votes
1answer
100 views

Groovy object tracking for binding

I'm developing a Groovy library providing variable binding/syncronization with simple syntax and rich event handler. Firstly I'm aiming to archive running the following: def a = 1 def b = 1 def c = ...
3
votes
1answer
64 views

Printing OCaml AST as OCaml Code

I have this piece of code that contains a camlp4 quotation. let f_name = "my_func" <:str_item< value $lid:f_name$ a = a * 2 >> After running this through camlp4of, it produces this: ...
0
votes
0answers
97 views

Parsing very simple expressions using Qt

In my Qt application, I want to parse simple expressions in the grammar as below. [expr] -> [functionname]([functionargs]) [variablename] ...
0
votes
0answers
22 views

How to discard the rest of line after syntax error

I'm implementing a small shell, and using lex&yacc to parse command. Lex reads command from stdin and yacc execute the command after yyparse. The problem is, when there is a syntax error, yacc ...
0
votes
0answers
24 views

Compilation issue while manipulating compiler AST

I am currently using JDK 1.6.0_23 For one of the requirement, I am going with annotation processing & compiler Hack using Tools.jar available as part of JDK. I have refered a PDF - "The Hacker's ...
2
votes
1answer
57 views

Pre-order and Post-order Visitor

I am working on a compiler written in Ruby and I am currently at the semantic analysis stage (type checking). I have an AST that I need to visit in two ways: pre-order and post-order, I was wondering ...
0
votes
1answer
55 views

Can't get ITranslationUnit for creating an AST of an C-File within a Eclipse Plugin

I'm trying to generate an AST with help of the CDT Eclipse Framework from an C-File of a generated project in my workspace. But every time i try to get an TranslationUnit through ICElement ice = ...
5
votes
0answers
101 views

For an architecture *lacking a stack or memory allocation*, what is the most expressive programming language? [closed]

I work on a proprietary sequencer having a few bytes of free RAM; several hundred bytes statically allocated; 8 registers including PC; no indirection (in C, a "pointer"); no stack. There is no MOV ...
5
votes
1answer
122 views

Boost::spirit::qi defining a calculator for nullaries

I'm trying to write a parser for math expressions where named variables are nullaries in boost::spirit (version 1_51_0), to which I'm completely new. I define typedef boost::function<double()> ...
0
votes
1answer
282 views

clang getting include files while parsing AST

I'd like to scan clang's AST. I started using some sample code provided in one tutorial. My current code is #include <iostream> #include "llvm/Support/raw_ostream.h" #include ...
3
votes
1answer
75 views

DFA predict and scope

Starting from this grammar: http://stackoverflow.com/a/14287002/1082002 I would realize a simple grammar that accepts and evaluates simple language like this: { if a==c { a if a==b { ...

1 2 3 4 5 13