While.SymbolTable.IsInScope C# (CSharp) Метод

IsInScope() публичный Метод

public IsInScope ( string name ) : bool
name string
Результат bool
        public bool IsInScope(string name)
        {
            Dictionary<string, int> scope = FindScopeForVariable(name);
            if (scope == null) {
                return _args.Contains(name);
            }
            return true;
        }