Richard Smith 663ed32b1b Initial support for associated constants (#1376) 3 роки тому
..
BUILD 9ea405788e Combine most ast/ build targets into one. (#1334) 3 роки тому
README.md 309ec35f95 Rename executable_semantics to explorer (#1188) 4 роки тому
ast.h 20728dbd3a CARBON_ header guards (#1261) 4 роки тому
ast_node.cpp 309ec35f95 Rename executable_semantics to explorer (#1188) 4 роки тому
ast_node.h 9007b3952d Initial support for `where` expressions. (#1310) 3 роки тому
ast_rtti.txt 663ed32b1b Initial support for associated constants (#1376) 3 роки тому
ast_test_matchers.h 20728dbd3a CARBON_ header guards (#1261) 4 роки тому
ast_test_matchers_internal.cpp 9106e9239e Initial implementation of returned var. (#1348) 3 роки тому
ast_test_matchers_internal.h 20728dbd3a CARBON_ header guards (#1261) 4 роки тому
ast_test_matchers_test.cpp 9106e9239e Initial implementation of returned var. (#1348) 3 роки тому
bindings.cpp a1be2a8a38 Track the arguments and witnesses on values indirectly. (#1335) 3 роки тому
bindings.h a1be2a8a38 Track the arguments and witnesses on values indirectly. (#1335) 3 роки тому
declaration.cpp 663ed32b1b Initial support for associated constants (#1376) 3 роки тому
declaration.h 663ed32b1b Initial support for associated constants (#1376) 3 роки тому
expression.cpp 17ee3ed9b7 Track a resolved `Member` on each member access expression. (#1333) 3 роки тому
expression.h 75d10e326f Make the names of declarations unusable before the point where their type is known. (#1352) 3 роки тому
expression_test.cpp 309ec35f95 Rename executable_semantics to explorer (#1188) 4 роки тому
impl_binding.h 392182cee1 Check for a symbolic value only if normal value lookup fails. (#1326) 3 роки тому
library_name.h 20728dbd3a CARBON_ header guards (#1261) 4 роки тому
member.cpp 17ee3ed9b7 Track a resolved `Member` on each member access expression. (#1333) 3 роки тому
member.h 17ee3ed9b7 Track a resolved `Member` on each member access expression. (#1333) 3 роки тому
paren_contents.h 20728dbd3a CARBON_ header guards (#1261) 4 роки тому
pattern.cpp e4a2d0f047 Addr Keyword Implementation (#1255) 3 роки тому
pattern.h 17ee3ed9b7 Track a resolved `Member` on each member access expression. (#1333) 3 роки тому
pattern_test.cpp 309ec35f95 Rename executable_semantics to explorer (#1188) 4 роки тому
return_term.h 20728dbd3a CARBON_ header guards (#1261) 4 роки тому
statement.cpp 9106e9239e Initial implementation of returned var. (#1348) 3 роки тому
statement.h 9106e9239e Initial implementation of returned var. (#1348) 3 роки тому
static_scope.cpp 3603db0a08 Give a different diagnostic if a name is used before it's declared. (#1364) 3 роки тому
static_scope.h 3603db0a08 Give a different diagnostic if a name is used before it's declared. (#1364) 3 роки тому
value_category.h 20728dbd3a CARBON_ header guards (#1261) 4 роки тому

README.md

The code in this directory defines the AST that represents Carbon code in the rest of explorer.

The AST is not quite immutable, because some node properties are set during some phase of static analysis, rather than during parsing. However, AST mutations are monotonic: once set, a node property cannot be changed. Furthermore, if a property is set after parsing, its documentation specifies what phase is responsible for setting it. Certain properties have has_foo() members for querying whether they are set, but those are for internal use within the phase that sets them. As a result, you can think of the AST as if it were immutable, but with certain parts that you can't yet observe, depending on what phase of compilation you're in.

All node types in the AST are derived from AstNode, and use LLVM-style RTTI to support safe down-casting and similar operations. Each abstract class Foo in the hierarchy has a kind method which returns a enum FooKind that identifies the concrete type of the object, and a FooKind value can be safely static_casted to BarKind if that value represents a type that's derived from both Foo and Bar.

We rely on code generation to help enforce those invariants, so every node type must be described in ast_rtti.txt. See the documentation in (gen_rtti.py)[../gen_rtti.py], the code generation script, for details about the file format and generated code.

The AST class hierarchy is structured in a fairly unsurprising way, with abstract classes such as Statement and Expression, and concrete classes representing individual syntactic constructs, such as If for if-statements.

Sometimes it is useful to work with a subset of node types that "cuts across" the primary class hierarchy. Rather than deal with the pitfalls of multiple inheritance, we handle these cases using a form of type erasure: we specify a notional interface that those types conform to, and then define a "view" class that behaves like a pointer to an instance of that interface. Types declare that they model an interface Foo by defining a public static member named ImplementsCarbonFoo. See ValueNodeView for an example of this pattern.