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
6c3ca1bc
Commit
6c3ca1bc
authored
May 02, 2012
by
Aaron Leung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renaming a flag.
parent
3300d166
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
node.hpp
node.hpp
+3
-3
test_node_factory.cpp
test_node_factory.cpp
+1
-1
No files found.
node.hpp
View file @
6c3ca1bc
...
@@ -109,7 +109,7 @@ namespace Sass {
...
@@ -109,7 +109,7 @@ namespace Sass {
bool
has_expansions
();
// { return ip_->has_expansions; }
bool
has_expansions
();
// { return ip_->has_expansions; }
bool
has_backref
();
// { return ip_->has_backref; }
bool
has_backref
();
// { return ip_->has_backref; }
bool
from_variable
();
// { return ip_->from_variable; }
bool
from_variable
();
// { return ip_->from_variable; }
bool
eval_me
();
// { return ip_->eval_me
; }
bool
should_eval
();
// { return ip_->should_eval
; }
bool
is_unquoted
();
// { return ip_->is_unquoted; }
bool
is_unquoted
();
// { return ip_->is_unquoted; }
bool
is_numeric
();
// { return ip_->is_numeric(); }
bool
is_numeric
();
// { return ip_->is_numeric(); }
...
@@ -205,7 +205,7 @@ namespace Sass {
...
@@ -205,7 +205,7 @@ namespace Sass {
bool
has_expansions
;
bool
has_expansions
;
bool
has_backref
;
bool
has_backref
;
bool
from_variable
;
bool
from_variable
;
bool
eval_me
;
bool
should_eval
;
bool
is_unquoted
;
bool
is_unquoted
;
// bool is_numeric();
// bool is_numeric();
...
@@ -260,7 +260,7 @@ namespace Sass {
...
@@ -260,7 +260,7 @@ namespace Sass {
inline
bool
Node
::
has_expansions
()
{
return
ip_
->
has_expansions
;
}
inline
bool
Node
::
has_expansions
()
{
return
ip_
->
has_expansions
;
}
inline
bool
Node
::
has_backref
()
{
return
ip_
->
has_backref
;
}
inline
bool
Node
::
has_backref
()
{
return
ip_
->
has_backref
;
}
inline
bool
Node
::
from_variable
()
{
return
ip_
->
from_variable
;
}
inline
bool
Node
::
from_variable
()
{
return
ip_
->
from_variable
;
}
inline
bool
Node
::
eval_me
()
{
return
ip_
->
eval_me
;
}
inline
bool
Node
::
should_eval
()
{
return
ip_
->
should_eval
;
}
inline
bool
Node
::
is_unquoted
()
{
return
ip_
->
is_unquoted
;
}
inline
bool
Node
::
is_unquoted
()
{
return
ip_
->
is_unquoted
;
}
inline
bool
Node
::
is_numeric
()
{
return
ip_
->
is_numeric
();
}
inline
bool
Node
::
is_numeric
()
{
return
ip_
->
is_numeric
();
}
...
...
test_node_factory.cpp
View file @
6c3ca1bc
...
@@ -20,7 +20,7 @@ int main()
...
@@ -20,7 +20,7 @@ int main()
cout
<<
interior
.
size
()
<<
endl
;
cout
<<
interior
.
size
()
<<
endl
;
cout
<<
interior
.
has_children
()
<<
endl
;
cout
<<
interior
.
has_children
()
<<
endl
;
cout
<<
interior
.
eval_me
()
<<
endl
<<
endl
;
cout
<<
interior
.
should_eval
()
<<
endl
<<
endl
;
Node
num
(
make
.
node
(
0
,
0
,
255
,
123
,
32
));
Node
num
(
make
.
node
(
0
,
0
,
255
,
123
,
32
));
...
...
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