manifold-lang / manifold-frontend

Frontend compiler for Manifold high-level language
GNU General Public License v3.0
6 stars 6 forks source link

Create StaticAttributeReferenceExpression class #3

Open mtrberzi opened 10 years ago

mtrberzi commented 10 years ago

Issue by lucaswoj Wednesday Nov 13, 2013 at 20:43 GMT Originally opened as https://github.com/manifold-lang/manifold/issues/34


This class represents a dot notation static access of an attribute (ie foo.bar)

class StaticAttributeReferenceExpression extends Expression {
  VariableIdentifier getBaseValue();
  String getAttributeName();
}