Example #1
0
File: Scope.cs Project: plioi/rook
 public override bool TryGet(string identifier, out DataType type)
 {
     return(globals.TryGet(identifier, out type));
 }
Example #2
0
File: Scope.cs Project: plioi/rook
 public override bool TryGet(string identifier, out DataType type)
 {
     return(members.TryGet(identifier, out type) || parent.TryGet(identifier, out type));
 }