using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Jace.Tokenizer
{
///
/// Represents an input token
///
public struct Token
{
///
/// The start position of the token in the input function text.
///
public int StartPosition;
///
/// The length of token in the input function text.
///
public int Length;
///
/// The type of the token.
///
public TokenType TokenType;
///
/// The value of the token.
///
public object Value;
}
}