When using ProtoBuf.jl on https://github.com/google/or-tools/blob/stable/ortools/bop/bop_parameters.proto, I'm hitting a nasty problem around the default value of the field default_solver_optimizer_sets: it's extremely long and split into multiple lines, but ProtoBuf.jl doesn't understand the various lines as a single string (which it should). Here is a part of the generated Julia code:
When using ProtoBuf.jl on https://github.com/google/or-tools/blob/stable/ortools/bop/bop_parameters.proto, I'm hitting a nasty problem around the default value of the field
default_solver_optimizer_sets
: it's extremely long and split into multiple lines, but ProtoBuf.jl doesn't understand the various lines as a single string (which it should). Here is a part of the generated Julia code:I bet the best fix is in
lex_quote
.