Class BoxArrayAccess

All Implemented Interfaces:
BoxVisitable

public class BoxArrayAccess extends BoxAccess
AST Node representing access with a square bracket like: variables['a'] or a[10]
  • Constructor Details

    • BoxArrayAccess

      public BoxArrayAccess(BoxExpression context, Boolean safe, BoxExpression access, Position position, String sourceText)
      Creates the AST node
      Parameters:
      context - expression representing the variable or a scope
      access - expression within the brackets
      position - position of the statement in the source code
      sourceText - source code that originated the Node
  • Method Details

    • accept

      public void accept(VoidBoxVisitor v)
      Description copied from interface: BoxVisitable
      Accept method for visitor support.
      Parameters:
      v - the visitor implementation
    • accept

      public BoxNode accept(ReplacingBoxVisitor v)
      Description copied from interface: BoxVisitable
      Accept method for replacing visitor support. Each accept returns the node, or a replacement node.
      Parameters:
      v - the visitor implementation