Interface TranslatorToCAst.WalkContext<C extends TranslatorToCAst.WalkContext<C,T>,T>

  • Method Details Link icon

    • getParent Link icon

    • addNameDecl Link icon

      default void addNameDecl(CAstNode n)
      Add a name declaration to this context. For variables or constants, n should be a CAstNode.DECL_STMT, and the initialization of the variable (if any) may occur in a separate assignment. For functions, n should be a CAstNode.FUNCTION_STMT, including the function body.
    • getNameDecls Link icon

      default List<CAstNode> getNameDecls()
    • getScopedEntities Link icon

      default Map<CAstNode,Collection<CAstEntity>> getScopedEntities()
      get a mapping from CAstNodes to the scoped entities (e.g. functions or local classes) introduced by those nodes. Also maps null to those entities not corresponding to any node (e.g nested classes)
    • getCatchTarget Link icon

      default CAstNode getCatchTarget()
    • getCatchTarget Link icon

      default CAstNode getCatchTarget(String s)
    • top Link icon

      default T top()
    • addScopedEntity Link icon

      default void addScopedEntity(CAstNode newNode, CAstEntity visit)
      associate a child entity with a given CAstNode, e.g. for a function declaration
    • cfg Link icon

      default CAstControlFlowRecorder cfg()
      for recording control-flow relationships among the CAst nodes
    • pos Link icon

      for recording source positions
    • getNodeTypeMap Link icon

      default CAstNodeTypeMapRecorder getNodeTypeMap()
      for recording types of nodes
    • getContinueFor Link icon

      default T getContinueFor(String label)
      for a 'continue' style goto, return the control flow target
    • getBreakFor Link icon

      default T getBreakFor(String label)
      for a 'break' style goto, return the control flow target