Clear and concise description of the problem
model Test {
// import:string;
// model:string;
// scalar:string;
// enum:string;
// union:string;
// interface:string;
// op:string;
// namespace:string;
// using:string;
// is:string;
// extends:string;
// alias:string;
// const:string;
// etc...
}
current solution: provides an escaping mechanism using backticks (`) or bouble quote (").
model Test {
"import" :string;
"model" :string;
"scalar" :string;
"enum" :string;
"union" :string;
"interface" :string;
"op" :string;
"namespace" :string;
"using" :string;
"is" :string;
"extends" :string;
"alias" :string;
"const" :string;
// etc...
}
Checklist
Clear and concise description of the problem
current solution: provides an escaping mechanism using backticks (`) or bouble quote (").
Checklist