@@ -41,32 +41,35 @@ namespace Sass {
41
41
42
42
struct SassValue * get_global (struct SassCompiler * comp, struct SassValue * name)
43
43
{
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 ();
50
51
}
51
52
52
53
struct SassValue * get_lexical (struct SassCompiler * comp, struct SassValue * name)
53
54
{
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 ();
60
62
}
61
63
62
64
struct SassValue * get_local (struct SassCompiler * comp, struct SassValue * name)
63
65
{
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 ();
70
73
}
71
74
72
75
struct SassValue * set_global (struct SassCompiler * comp, struct SassValue * name, struct SassValue * value)
0 commit comments