Returns the accessor name without the leading self. part.
self.
For example:
self.a
a
self.a()
self.object.f1
object.f1
nonSelf.a
Returns the accessor name without the leading
self.
part.For example:
self.a
-> AstId(a
)self.a()
-> AstMethodCall(a
)self.object.f1
-> AstFieldAccess(object.f1
)nonSelf.a
-> undefined