Represents the kind of field access in the typed AST.
Values
FInstance(c:Ref<ClassType>, params:Array<Type>, cf:Ref<ClassField>)
Access of field cf
on a class instance c
with type parameters
params
.
FStatic(c:Ref<ClassType>, cf:Ref<ClassField>)
Static access of a field cf
on a class c
.
FAnon(cf:Ref<ClassField>)
Access of field cf
on an anonymous structure.