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
35b4632f
Commit
35b4632f
authored
Mar 28, 2012
by
Aaron Leung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fiddling.
parent
f677bbc2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
sassc.cpp
sassc.cpp
+5
-2
No files found.
sassc.cpp
View file @
35b4632f
...
@@ -29,13 +29,15 @@ int main(int argc, char* argv[]) {
...
@@ -29,13 +29,15 @@ int main(int argc, char* argv[]) {
Document
doc
(
path
,
0
);
Document
doc
(
path
,
0
);
doc
.
parse_scss
();
doc
.
parse_scss
();
cerr
<<
"
successfully parsed document
"
<<
endl
;
cerr
<<
"
SUCCESSFULLY PARSED DOCUMENT
"
<<
endl
;
doc
.
eval_pending
();
doc
.
eval_pending
();
cerr
<<
"SUCCESSFULLY EVALED DOCUMENT"
<<
endl
;
string
output
=
doc
.
emit_css
(
style
);
string
output
=
doc
.
emit_css
(
style
);
cout
<<
output
;
cerr
<<
"Fresh nodes:
\t
"
<<
Node
::
fresh
<<
endl
;
cerr
<<
"Fresh nodes:
\t
"
<<
Node
::
fresh
<<
endl
;
cerr
<<
"Copied nodes:
\t
"
<<
Node
::
copied
<<
endl
;
cerr
<<
"Copied nodes:
\t
"
<<
Node
::
copied
<<
endl
;
cout
<<
output
;
return
0
;
return
0
;
}
}
\ No newline at end of file
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