Cleaned up some import statements
This commit is contained in:
parent
c4531b25e2
commit
715de2f220
|
@ -5,8 +5,7 @@ import java.io.InputStream;
|
|||
import error.LispException;
|
||||
import scanner.LispScanner;
|
||||
import sexpression.SExpression;
|
||||
import token.Eof;
|
||||
import token.Token;
|
||||
import token.*;
|
||||
|
||||
/**
|
||||
* Converts a stream of bytes into internal representations of Lisp s-expressions.
|
||||
|
|
|
@ -2,8 +2,7 @@ package scanner;
|
|||
|
||||
import static util.Characters.*;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.*;
|
||||
|
||||
/**
|
||||
* Removes Lisp comments from an input stream.
|
||||
|
|
|
@ -2,8 +2,7 @@ package scanner;
|
|||
|
||||
import java.io.IOException;
|
||||
|
||||
import error.ErrorManager;
|
||||
import error.LispException;
|
||||
import error.*;
|
||||
|
||||
public interface LispInputStream {
|
||||
|
||||
|
|
|
@ -6,8 +6,7 @@ import java.io.InputStream;
|
|||
import java.util.function.Function;
|
||||
|
||||
import error.LineColumnException;
|
||||
import file.FilePosition;
|
||||
import file.FilePositionTracker;
|
||||
import file.*;
|
||||
import token.*;
|
||||
import util.Characters;
|
||||
|
||||
|
|
|
@ -3,8 +3,7 @@ package token;
|
|||
import java.util.function.Supplier;
|
||||
|
||||
import file.FilePosition;
|
||||
import sexpression.SExpression;
|
||||
import sexpression.Symbol;
|
||||
import sexpression.*;
|
||||
|
||||
public class Identifier extends Token {
|
||||
|
||||
|
|
|
@ -3,8 +3,7 @@ package token;
|
|||
import java.util.function.Supplier;
|
||||
|
||||
import file.FilePosition;
|
||||
import sexpression.LispNumber;
|
||||
import sexpression.SExpression;
|
||||
import sexpression.*;
|
||||
|
||||
public class Number extends Token {
|
||||
|
||||
|
|
|
@ -3,8 +3,7 @@ package token;
|
|||
import java.util.function.Supplier;
|
||||
|
||||
import file.FilePosition;
|
||||
import sexpression.LispString;
|
||||
import sexpression.SExpression;
|
||||
import sexpression.*;
|
||||
|
||||
public class QuotedString extends Token {
|
||||
|
||||
|
|
|
@ -4,8 +4,7 @@ import java.util.function.Supplier;
|
|||
|
||||
import error.LineColumnException;
|
||||
import file.FilePosition;
|
||||
import sexpression.Nil;
|
||||
import sexpression.SExpression;
|
||||
import sexpression.*;
|
||||
|
||||
public class RightParenthesis extends Token {
|
||||
|
||||
|
|
|
@ -3,8 +3,7 @@ package token;
|
|||
import java.util.function.Supplier;
|
||||
|
||||
import file.FilePosition;
|
||||
import sexpression.Cons;
|
||||
import sexpression.SExpression;
|
||||
import sexpression.*;
|
||||
|
||||
/**
|
||||
* A token in Lisp.
|
||||
|
|
Loading…
Reference in New Issue