Class S2K

java.lang.Object
  extended by S2K

public class S2K
extends java.lang.Object

This class is an entry point to the spiglet-to-kanga translator functionality testing unit. The program's interface is as required by Homework 5 specification.
Sample usage (where input is a file containing the input expression string):

java S2K < input

The driver program first parses the source file to create an abstract syntax tree. Then, a KangaTranslator visitor then visits the AST and generates along the way a translated Kanga AST. A formatter and dumper visitors then visit this Kanga AST and pretty-print the resulting code to standard output. The output of the program is a formatted Kanga code.

Author:
Santoso Wijaya
See Also:
KangaTranslator

Constructor Summary
S2K()
           
 
Method Summary
static void main(java.lang.String[] args)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

S2K

public S2K()
Method Detail

main

public static void main(java.lang.String[] args)
                 throws java.io.IOException,
                        ParseException
Throws:
java.io.IOException
ParseException