Browse Source

Removed old unused scripts directory.

Göran Krampe 13 years ago
parent
commit
b241561fb5
2 changed files with 0 additions and 37 deletions
  1. 0 10
      scripts/compile.js
  2. 0 27
      scripts/jtalk

+ 0 - 10
scripts/compile.js

@@ -1,10 +0,0 @@
-if(arguments[0]) {
-    smalltalk.Importer._new()._import_(read(arguments[0])._stream());
-}
-
-if(arguments[1]) {
-    print(smalltalk.Exporter._new()._exportCategory_(arguments[1]));
-}
-
-
-

+ 0 - 27
scripts/jtalk

@@ -1,27 +0,0 @@
-#!/bin/bash
-
-USAGE=" $0 [OPTIONS]\n\n
-
-The currently defined set of flags is:\n\n
-
--o category\t fileout compiled classes in category\n
--f file   \t filein file\n"
-FILE=''
-CATEGORY=''
-
-if [ $# == 0 ]; then
-        echo -e $USAGE
-        exit 1
-fi
-
-while getopts f:o:h o
-do        case "$o" in
-        f) 	  FILE="$OPTARG";;
-        o) 	  CATEGORY="$OPTARG";;
-        h)    echo -e "Usage:"
-              echo -e $USAGE
-                exit 1;;
-        esac
-done
-
-d8 ./js/boot.js ./js/kernel.js ./js/parser.js ./js/compiler.js ./js/canvas.js ./js/init.js ./scripts/compile.js -- $FILE $CATEGORY