java - Correct synthanx of an ASN.1 module -


i wrote asn.1 module

-- created: mon may 06 19:38:15 cest 2013 asn-module definitions automatic tags ::= begin  client ::= sequence { lientnumber integer}  server ::= sequence { lientnumber integer, serverstring string } end 

the eclipse asn.1 plugin don't show me error in module when want compile jac asn1 error

javacc.parseexception: encountered "::=" @ line 5, column 12. expecting 1 of: "{" ... "definitions" ... @ javacc.asnparser.generateparseexception(asnparser.java:5351) @ javacc.asnparser.jj_consume_token(asnparser.java:5232) @ javacc.asnparser.moduledefinition(asnparser.java:270) @ javacc.asnparser.input(asnparser.java:238) @ javacc.asnparser.main(asnparser.java:83) arc - asn.1 compiler copyright 1999 forge research pty ltd

usage: java asnparser [-d directory] [-p package] source files...


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -