Restructering to allow syncing between AppleCommander and bastokenizer

easier.
This commit is contained in:
Rob Greene 2018-05-13 11:55:02 -05:00
parent 42b0f90931
commit f760b8a67b
8 changed files with 14 additions and 9 deletions

View File

@ -1,4 +1,4 @@
package net.sf.applecommander.bastokenizer;
package com.webcodepro.applecommander.util.applesoft;
import java.io.IOException;
import java.io.Reader;

View File

@ -1,4 +1,4 @@
package net.sf.applecommander.bastokenizer;
package com.webcodepro.applecommander.util.applesoft;
import java.io.ByteArrayOutputStream;
import java.io.IOException;

View File

@ -1,9 +1,9 @@
package net.sf.applecommander.bastokenizer;
package com.webcodepro.applecommander.util.applesoft;
import java.util.Objects;
import java.util.Queue;
import net.sf.applecommander.bastokenizer.Token.Type;
import com.webcodepro.applecommander.util.applesoft.Token.Type;
/**
* The Parser will read a series of Tokens and build a Program.

View File

@ -1,4 +1,4 @@
package net.sf.applecommander.bastokenizer;
package com.webcodepro.applecommander.util.applesoft;
import java.io.ByteArrayOutputStream;
import java.io.IOException;

View File

@ -1,4 +1,4 @@
package net.sf.applecommander.bastokenizer;
package com.webcodepro.applecommander.util.applesoft;
import java.io.ByteArrayOutputStream;
import java.io.IOException;

View File

@ -1,4 +1,4 @@
package net.sf.applecommander.bastokenizer;
package com.webcodepro.applecommander.util.applesoft;
import java.io.ByteArrayOutputStream;
import java.io.IOException;

View File

@ -1,4 +1,4 @@
package net.sf.applecommander.bastokenizer;
package com.webcodepro.applecommander.util.applesoft;
import java.io.FileNotFoundException;
import java.io.FileReader;

View File

@ -1,9 +1,14 @@
package net.sf.applecommander.bastokenizer;
package io.github.applecommander.bastokenizer;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Queue;
import com.webcodepro.applecommander.util.applesoft.Parser;
import com.webcodepro.applecommander.util.applesoft.Program;
import com.webcodepro.applecommander.util.applesoft.Token;
import com.webcodepro.applecommander.util.applesoft.TokenReader;
/** A simple driver for the tokenizer for a sample and rudimentary test. */
public class Main {
public static void main(String[] args) throws FileNotFoundException, IOException {