コード例 #1
0
 public Variable(Scope scope, string id) : base(scope)
 {
     IsGlobal   = Scope.IsGlobal(id);
     ScopeLevel = Scope.GetScopeLevel(id);
     VariableId = id;
     if (!IsGlobal)
     {
         AccessIndex = Scope.Access(this);
     }
 }