Remove useless files

This commit is contained in:
Sasha Koshka 2022-08-30 01:11:37 -04:00
parent 65c213f1f3
commit 05954546eb
2 changed files with 0 additions and 30 deletions

View File

@ -1,21 +0,0 @@
package parser
import "testing"
func TestFace (test *testing.T) {
checkTree ("../tests/parser/face",
`:arf
---
face ro Destroyer:Face
destroy
face ro ReadWriter:Face
read
> into:{Byte ..}
< read:Int
< err:Error
write
> data:{Byte ..}
< wrote:Int
< err:Error
`, test)
}

View File

@ -1,9 +0,0 @@
package arf
import "io"
import "git.tebibyte.media/arf/arf/parser"
func CompileModule (modulePath string, output io.Writer) (err error) {
_, err = parser.Parse(modulePath)
return
}