Esempio n. 1
0
 public override void CaseAPlanereference(APlanereference node)
 {
     InAPlanereference(node);
     if(node.GetNewline() != null)
     {
     node.GetNewline().Apply(this);
     }
     if(node.GetString() != null)
     {
     node.GetString().Apply(this);
     }
     if(node.GetKeywordPlane() != null)
     {
     node.GetKeywordPlane().Apply(this);
     }
     OutAPlanereference(node);
 }