diff options
author | Yehuda Katz <wycats@gmail.com> | 2013-07-24 05:03:27 +0000 |
---|---|---|
committer | Yehuda Katz <wycats@gmail.com> | 2013-07-24 05:03:27 +0000 |
commit | f5c8484ea0c1ac1aec6994ad3b5928fb67b7aa62 (patch) | |
tree | 8e92df6cccab8ff4da78c11d90d4e534a19374b8 /lib/handlebars/compiler/printer.js | |
parent | da130f7745fc338d7ea31c60d9954ab6e0e1511a (diff) | |
download | handlebars.js-f5c8484ea0c1ac1aec6994ad3b5928fb67b7aa62.zip handlebars.js-f5c8484ea0c1ac1aec6994ad3b5928fb67b7aa62.tar.gz handlebars.js-f5c8484ea0c1ac1aec6994ad3b5928fb67b7aa62.tar.bz2 |
Further progress towards modularization.
At this point, I have only 2 fails in the Node build, but I'm doing a
bunch of manual stuff locally and still have a bunch of hacks.
Diffstat (limited to 'lib/handlebars/compiler/printer.js')
-rw-r--r-- | lib/handlebars/compiler/printer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler/printer.js b/lib/handlebars/compiler/printer.js index c6e08bb..0280960 100644 --- a/lib/handlebars/compiler/printer.js +++ b/lib/handlebars/compiler/printer.js @@ -1,4 +1,4 @@ -import Visitor from "handlebars/compiler/visitor"; +import Visitor from "./visitor"; export function print(ast) { return new PrintVisitor().accept(ast); |