Class SexprItem
java.lang.Object
org.jfuncmachine.sexprlang.parser.SexprItem
- Direct Known Subclasses:
SexprDouble,SexprInt,SexprList,SexprString,SexprSymbol
public abstract sealed class SexprItem
extends Object
permits SexprString, SexprInt, SexprDouble, SexprSymbol, SexprList
An item from an S-expression
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal StringThe name of the source filename that the item was read fromfinal intThe line number in the source file where this item started -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
filename
The name of the source filename that the item was read from -
lineNumber
public final int lineNumberThe line number in the source file where this item started
-
-
Constructor Details
-
SexprItem
Create a new SexprItem- Parameters:
filename- The name of the source filename that the item was read fromlineNumber- The line number in the source file where this item started
-