Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sass
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
楚学文
node-sass
Commits
23c83e19
Commit
23c83e19
authored
Sep 07, 2012
by
Aaron Leung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Okay, doing it correctly this time.
parent
1d65126a
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
eval_apply.cpp
eval_apply.cpp
+1
-1
eval_apply.hpp
eval_apply.hpp
+1
-1
functions.hpp
functions.hpp
+0
-0
No files found.
eval_apply.cpp
View file @
23c83e19
...
...
@@ -323,7 +323,7 @@ namespace Sass {
if
(
!
f_env
.
count
(
resolved_name
))
throw_eval_error
(
"wrong number of arguments to "
+
name
,
expr
.
path
(),
expr
.
line
());
f
=
f_env
[
resolved_name
];
}
return
apply_function
(
f
,
expr
[
1
],
prefix
,
env
,
f_env
,
new_Node
,
ctx
);
return
apply_function
(
f
,
expr
[
1
],
prefix
,
env
,
f_env
,
new_Node
,
ctx
,
expr
.
path
(),
expr
.
line
()
);
}
}
break
;
...
...
eval_apply.hpp
View file @
23c83e19
...
...
@@ -19,7 +19,7 @@ namespace Sass {
double
operate
(
Node
::
Type
op
,
double
lhs
,
double
rhs
);
Node
apply_mixin
(
Node
mixin
,
const
Node
args
,
Node
prefix
,
Environment
&
env
,
map
<
string
,
Function
>&
f_env
,
Node_Factory
&
new_Node
,
Context
&
ctx
,
bool
dynamic_scope
=
false
);
Node
apply_function
(
const
Function
&
f
,
const
Node
args
,
Node
prefix
,
Environment
&
env
,
map
<
string
,
Function
>&
f_env
,
Node_Factory
&
new_Node
,
Context
&
ctx
,
string
&
path
=
""
,
size_t
line
=
0
);
Node
apply_function
(
const
Function
&
f
,
const
Node
args
,
Node
prefix
,
Environment
&
env
,
map
<
string
,
Function
>&
f_env
,
Node_Factory
&
new_Node
,
Context
&
ctx
,
string
&
path
,
size_t
line
);
Node
expand_selector
(
Node
sel
,
Node
pre
,
Node_Factory
&
new_Node
);
Node
expand_backref
(
Node
sel
,
Node
pre
);
void
extend_selectors
(
vector
<
pair
<
Node
,
Node
>
>&
,
multimap
<
Node
,
Node
>&
,
Node_Factory
&
);
...
...
functions.hpp
View file @
23c83e19
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment