Commit 94d00064 by Aaron Leung

Using the file-name and line-number of the function name as the file-name and…

Using the file-name and line-number of the function name as the file-name and line-number of a function call.
parent 98b7de25
...@@ -1055,7 +1055,7 @@ namespace Sass { ...@@ -1055,7 +1055,7 @@ namespace Sass {
} }
Node args(parse_arguments()); Node args(parse_arguments());
Node call(context.new_Node(Node::function_call, path, line, 2)); Node call(context.new_Node(Node::function_call, name.path(), name.line(), 2));
call << name << args; call << name << args;
call.should_eval() = true; call.should_eval() = true;
return call; return call;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment