public TotemScope(TotemScope parent) { this.parent = parent; this.values = new Dictionary <string, TotemValue>(); }
protected TotemFunction(TotemScope env, string name, TotemParameter[] parametersDefinition) { this.environment = env; this.name = name; this.parametersDefinition = parametersDefinition ?? new TotemParameter[0]; }
public TotemScope(TotemScope parent) { this.parent = parent; this.values = new Dictionary<string, TotemValue>(); }