@@ -41,32 +41,35 @@ namespace Sass {
4141
4242 struct SassValue * get_global (struct SassCompiler * comp, struct SassValue * name)
4343 {
44- Value& value (Value::unwrap (name));
45- Compiler& compiler (Compiler::unwrap (comp));
46- ValueObj rv = compiler.findVariable (
47- value.assertString (compiler, " name" )->getText (), true );
48- if (rv) rv->refcount += 1 ;
49- return rv ? Value::wrap (rv) : sass_make_null ();
44+ // Value& value(Value::unwrap(name));
45+ // Compiler& compiler(Compiler::unwrap(comp));
46+ // ValueObj rv = compiler.findVariable(
47+ // value.assertString(compiler, "name")->getText(), true);
48+ // if (rv) rv->refcount += 1;
49+ // return rv ? Value::wrap(rv) : sass_make_null();
50+ return sass_make_null ();
5051 }
5152
5253 struct SassValue * get_lexical (struct SassCompiler * comp, struct SassValue * name)
5354 {
54- Value& value (Value::unwrap (name));
55- Compiler& compiler (Compiler::unwrap (comp));
56- ValueObj rv = compiler.findVariable (
57- value.assertString (compiler, " name" )->getText ());
58- if (rv) rv->refcount += 1 ;
59- return rv ? Value::wrap (rv) : sass_make_null ();
55+ // Value& value(Value::unwrap(name));
56+ // Compiler& compiler(Compiler::unwrap(comp));
57+ // ValueObj rv = compiler.findVariable(
58+ // value.assertString(compiler, "name")->getText());
59+ // if (rv) rv->refcount += 1;
60+ // return rv ? Value::wrap(rv) : sass_make_null();
61+ return sass_make_null ();
6062 }
6163
6264 struct SassValue * get_local (struct SassCompiler * comp, struct SassValue * name)
6365 {
64- Value& value (Value::unwrap (name));
65- Compiler& compiler (Compiler::unwrap (comp));
66- ValueObj rv = compiler.findVariable (
67- value.assertString (compiler, " name" )->getText ());
68- if (rv) rv->refcount += 1 ;
69- return rv ? Value::wrap (rv) : sass_make_null ();
66+ // Value& value(Value::unwrap(name));
67+ // Compiler& compiler(Compiler::unwrap(comp));
68+ // ValueObj rv = compiler.findVariable(
69+ // value.assertString(compiler, "name")->getText());
70+ // if (rv) rv->refcount += 1;
71+ // return rv ? Value::wrap(rv) : sass_make_null();
72+ return sass_make_null ();
7073 }
7174
7275 struct SassValue * set_global (struct SassCompiler * comp, struct SassValue * name, struct SassValue * value)
0 commit comments