Compare commits

..

No commits in common. "fbb68e6ff7a5729c44f35308bc33ac5487fa1ea6" and "892a2f2554925529af52cc0b20f4b05cefd475b1" have entirely different histories.

2 changed files with 1 additions and 21 deletions

View File

@ -55,7 +55,7 @@ func main() {
} }
_, err = generator.Generate(protocol) _, err = generator.Generate(protocol)
handleErr(command, 1, err) handleErr(command, 1, err)
command.Println(destination, "OK") command.Println(output, "OK")
} }
func handleErr(command *cli.Cli, code int, err error) { func handleErr(command *cli.Cli, code int, err error) {

View File

@ -1,20 +0,0 @@
filetype: pdl
detect:
filename: "\\.pdl$"
rules:
- preproc: "\\bM[0-9a-fA-F]{4}\\b"
- type: "\\b((U|I)(5|8|16|32|64|128|256)|F(16|32|64|128|256)|Bool|String|Buffer|Table|Any)\\b"
- symbol.brackets: "(\\{|\\}|\\[\\])"
- symbol.operator: "\\?"
- constant.number: "\\b[0-9a-fA-F]{4}\\b"
- comment:
start: "//"
end: "$"
rules:
- todo: "(TODO|XXX|FIXME|BUG):?"