3e5de399a7
I've just moved the relevant code into the functional-tests dir.
19 lines
388 B
Scheme
19 lines
388 B
Scheme
;;;; fmt-js.scm -- javascript formatting utilities
|
|
;;
|
|
;; Copyright (c) 2011-2012 Alex Shinn. All rights reserved.
|
|
;; BSD-style license: http://synthcode.com/license.txt
|
|
|
|
#!r6rs
|
|
(library
|
|
(fmt js)
|
|
(export
|
|
js-expr js-function js-var js-comment js-array js-object js=== js>>>)
|
|
|
|
(import (chezscheme)
|
|
(fmt fmt) (fmt c)
|
|
(srfi private include))
|
|
|
|
(include ("fmt") "fmt-js.scm")
|
|
|
|
)
|