operator [] abstract method

dynamic operator [](
  1. String x
)

When we create these from strings or from AST nodes, we want to look up and set their attributes by string names, so we override the indexing operators so that they behave like maps with respect to those attribute names.

Implementation

operator [](String x);