-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
New Library and New Structure
Create a new library to new lexical structures and functions.
This library 'll contain some kind of structures, some o these are:
- Token
- Generic List (to support token lists)
Token Structure
A token's composed by the following features:
- lexeme (it represents a word as it's written)
- value (if the token is a stopword or math symbol, for example)
- line number (the number of line that token occurs)
- initial character column number (to count the characters in any word, in later analysis)
- final character column number (to count the character where a token has been finished)
Reactions are currently unavailable