summaryrefslogtreecommitdiff
path: root/scss/tool.py
diff options
context:
space:
mode:
Diffstat (limited to 'scss/tool.py')
-rw-r--r--scss/tool.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scss/tool.py b/scss/tool.py
index a348e9c..f9b83b4 100644
--- a/scss/tool.py
+++ b/scss/tool.py
@@ -348,6 +348,7 @@ class SassRepl(object):
self.compilation._at_options(self.calculator, rule, scope, block)
continue
elif code == '@import':
+ # TODO this doesn't really work either since there's no path
self.compilation._at_import(self.calculator, rule, scope, block)
continue
elif code == '@include':
@@ -357,6 +358,7 @@ class SassRepl(object):
if code:
final_cont += code
if children:
+ # TODO this almost certainly doesn't work, and is kind of goofy anyway since @mixin isn't supported
self.compilation.children.extendleft(children)
self.compilation.parse_children()
code = self.compilation._create_css(self.compilation.rules).rstrip('\n')