Exemple #1
0
 public MemoryTier this[Sym sym]
 {
     get
     {
         return Symbols[sym];
     }
 }
Exemple #2
0
 public static bool IsLocal(this Sym sym)
 {
     return(sym is Local);
 }
Exemple #3
0
 public static bool IsParam(this Sym sym)
 {
     return(sym is Param);
 }
 private int Alloc(Sym sym) { return _allocs[sym.AssertCast<Local>()]; }