Commit 43dcced8 by Aaron Leung

Gah, didn't even bother to try compiling. Needed to fix a bunch of typos.

parent 02ab7afa
...@@ -234,12 +234,12 @@ namespace Sass { ...@@ -234,12 +234,12 @@ namespace Sass {
has_children = true; has_children = true;
switch (type) switch (type)
{ {
case comment: case Node::comment:
case css_import: case Node::css_import:
case rule: case Node::rule:
case propsest: has_statements = true; break; case Node::propset: has_statements = true; break;
case ruleset: has_blocks = true; break; case Node::ruleset: has_blocks = true; break;
case expansion: has_expansions = true; break; case Node::expansion: has_expansions = true; break;
default: break; default: break;
} }
} }
......
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