lexer.go 220 B

1234567891011
  1. package lexer
  2. import "fmt"
  3. func Parse(binData []byte) ([]string, error) {
  4. strData := string(binData)
  5. if strData == "" {
  6. return nil, fmt.Errorf("lexer.PArse(): not have code for lexer")
  7. }
  8. return []string{}, nil
  9. }