summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2015-01-22 12:44:13 -0800
committerEevee (Alex Munroe) <eevee.git@veekun.com>2015-01-22 12:44:13 -0800
commite2f6e03109a8b91a574aa55bea43ff1737049b28 (patch)
tree67e50fe66c06a06c387e1849a7915ce9c3857116 /scss
parent3a0868d8496523f9c43d8ec295fc55321d39b955 (diff)
downloadpyscss-e2f6e03109a8b91a574aa55bea43ff1737049b28.tar.gz
comment
Diffstat (limited to 'scss')
-rw-r--r--scss/compiler.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/scss/compiler.py b/scss/compiler.py
index e6b47f5..72e1e38 100644
--- a/scss/compiler.py
+++ b/scss/compiler.py
@@ -182,6 +182,13 @@ class Compiler(object):
raise
def compile(self, *filenames):
+ # TODO this doesn't spit out the compilation itself, so if you want to
+ # get something out besides just the output, you have to copy this
+ # method. that sucks.
+ # TODO i think the right thing is to get all the constructors out of
+ # SourceFile, since it's really the compiler that knows the import
+ # paths and should be consulted about this. reconsider all this (but
+ # preserve it for now, SIGH) once importers are a thing
compilation = self.make_compilation()
for filename in filenames:
# TODO maybe SourceFile should not be exposed to the end user, and