Tagged Questions

0
votes
1answer
33 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 yo …
5
votes
10answers
617 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 AS …
5
votes
4answers
64 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 t …
1
vote
2answers
49 views

Using groovy AST Transform for modifying java

Would it be possible to use groovy ast transformations code to manipulate java classes? If yes, please give an example. If no, please specify why.
2
votes
7answers
101 views

Instrumenting Javascript

I would like to instrument Javascript code in order to "log" values of global variables. For example I would like to know all the values a particular variables foo had during execu …
0
votes
3answers
209 views

How to manipulate C# AST?

I am working on a Reverse Engineering school project, which requires to translate manipulate AST of compiled C# project. I have seen the post on "Translate C# code into AST?" in th …
1
vote
0answers
68 views

How to traverse XPath recursively ?

Hi, is there a way (and if so, how ?) to traverse a XPath query recursively ? I have an AST in Java with the following scenario @Relevant public void foo() { bar(true); } pu …
2
votes
7answers
275 views

What is System.Linq.Expressions in C# used for?

Is LINQ a new feature in .NET 4.0? Older versions like .NET 3.5 doesn't have? I am interested to know about this as it seemed to be somehow related to my the project I am working …
2
votes
4answers
109 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 …
1
vote
1answer
33 views

transforming Jython’s source / ast

I've got a problem to solve in Jython. The function I've got looks like this: ok = whatever1(x, ...) self.assertTrue("whatever1 failed: "+x...(), ok) ok = whatever2(x, ...) self. …
0
votes
2answers
156 views

What is the max LINQ Expression Trees can do?

What is the maximun that LINQ expression Tree can do? Can it define a class? How about a method, with all the declared name, modifiers, parametertype and return type? Must the p …
1
vote
4answers
138 views

What should my AST look like for easy transforms?

I have a minimal toy language similar to javascript. I generate an AST to try out some optimization techniques like escape analysis, type inference. I tried a few approaches like g …
1
vote
1answer
98 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 …
0
votes
2answers
110 views

ASTVisitor in Eclipse

Hi, I am learning how to do an ASTVisitor for a project, so I started using Eclipse, which has a comprehensive API for that. I have downloaded the Packed Example Project from thi …
7
votes
7answers
471 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 …

1 2 next
15 30 50 per page