Ejemplo n.º 1
0
 public void Accept(AttributeAccessNode node)
 {
     node.Left.Visit(this);
     if (!module.ConstantPool.ContainsValue(node.Right))
         module.ConstantPool.Add(node.Right.GetHashCode(), node.Right);
     method.Emit(node.SourceLocation, InstructionType.LoadAttribute, node.Right.GetHashCode());
 }
Ejemplo n.º 2
0
 public void Accept(AttributeAccessNode node)
 {
 }