parser: add placeholder for ini Parser

Signed-off-by: Alejandro Mery <amery@jpi.io>
This commit is contained in:
2023-08-28 23:46:05 +00:00
parent 1dd7cb19a8
commit 5288cd4537
5 changed files with 109 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
package parser
import "asciigoat.org/core/lexer"
// Run parses the source
func (p *Parser) Run() error {
p.setDefaults()
p.pos.Reset()
return lexer.Run(nil)
}