About 211,000 results
Open links in new tab
  1. abstract syntax tree - What is JavaScript AST, how to play with it ...

    16 Abstract Syntax Tree (AST), is a tree representation of program source code. There is a couple JavaScript AST standards: estree - standard for EcmaScript AST; shift - was designed …

  2. What's the difference between parse trees and abstract syntax …

    Feb 17, 2011 · Here's an explanation of parse trees (concrete syntax trees, CSTs) and abstract syntax trees (ASTs), in the context of compiler construction. They're similar data structures, …

  3. parsing - What is the difference between an Abstract Syntax Tree …

    The abstract syntax tree is the result of simplifying the concrete syntax tree down to the things actually needed to represent the meaning of the program. This tree has a much simpler …

  4. What's the use of abstract syntax trees? - Stack Overflow

    Oct 8, 2010 · Whether that tree is abstract (AST) or concrete (CST) is a matter of taste, convenience, and engineering sweat. The term CST is specially used to describe the parse …

  5. c# - Developing Abstract Syntax Tree - Stack Overflow

    May 21, 2012 · For this, you can consult Wikipedia on abstract syntax trees for a first look. You really need to spend some time with a compiler text book to understand how abstract syntax …

  6. What is an Abstract Syntax Tree/Is it needed? - Stack Overflow

    Aug 10, 2012 · The next logical question is: What, then, is an AST? Well, the purpose of parsing/syntactic analysis is to turn the series of tokens generated by the lexer into an AST (or …

  7. abstract syntax tree - What is AST in graphql? - Stack Overflow

    Sep 11, 2017 · This representation is called an abstract syntax tree, or AST. When GraphQL Processes the query, it walks the tree executing each part against the schema. Converting raw …

  8. How to generate AST from Java source-code? - Stack Overflow

    Jun 15, 2015 · As far as I know, the only way to parse Java source-code into an AST (Abstract Syntax Tree) is to use the Java Compiler Tree API: com.sun.source.tree I have two questions: …

  9. abstract syntax tree - Getting AST for C++? - Stack Overflow

    You can read the XML into a dom-like tree if you like and write your own procedural code to manipulate it. But source-to-source transformations are an easier way; you can write your …

  10. abstract syntax tree - get human readable AST from c++ code

    Jun 30, 2013 · In order to get a better understanding of some of the details of the C++ language and grammer, I would love to be able to write a small C++ program, and see the AST that a …