Example #1
0
        public void ResolveScope(VariableExpression var)
        {
            Variable ret = FunctionScope.Lookup(var.Value);

            if (ret == null)
            {
                var.Error("Unresolved scope lookup");
            }
            var.ScopeReference = ret;
        }