Exemplo n.º 1
0
 internal ForwardRef(ForwardRef next, String name, String prefix, String id, int line, int col, bool implied, ForwardRef.Type type) {
     Next = next;
     Name = name;
     Prefix = prefix;
     ID = id;
     Line = line;
     Col = col;
     Implied = implied;
     RefType = type;
 }
Exemplo n.º 2
0
 internal ForwardRef(ForwardRef next, String name, String prefix, String id, int line, int col, bool implied, ForwardRef.Type type)
 {
     Next    = next;
     Name    = name;
     Prefix  = prefix;
     ID      = id;
     Line    = line;
     Col     = col;
     Implied = implied;
     RefType = type;
 }
Exemplo n.º 3
0
 internal void AddForwardRef(String name, String prefix, String id, int line, int col, bool implied, ForwardRef.Type type)
 {
     forwardRefs = new ForwardRef(forwardRefs, name, prefix, id, line, col, implied, type);
 }