Browse Source

style: s/};/}/g - never required. might be confusing for readers

main
heck 2 years ago
parent
commit
5e805ef959
  1. 10
      examples/example1/example1.yml2
  2. 18
      idl/idl_api.ysl2
  3. 2
      idl/pEpACIDLang.yml2
  4. 8
      idl/test_api/test_api.yml2
  5. 3
      idl/test_api/test_api.ysl2
  6. 2
      lm-c99/ig-c99.ysl2
  7. 28
      lm-c99/tests/test_ig_c99/test_ig_c99.yml2

10
examples/example1/example1.yml2

@ -25,7 +25,7 @@ pEpACIDLang {
------------- -------------
specify value in quotes specify value in quotes
"""; """;
}; }
struct struct1 { struct struct1 {
field int int1; field int int1;
@ -35,7 +35,7 @@ pEpACIDLang {
Multiline Multiline
Doc Doc
"""; """;
}; }
@ -104,7 +104,7 @@ pEpACIDLang {
param provide struct1 param1; param provide struct1 param1;
} }
}; }
}; }
}; }

18
idl/idl_api.ysl2

@ -132,7 +132,7 @@ def "func:idl_get_package_license" {
def "func:idl_get_basetypes" { def "func:idl_get_basetypes" {
result "/pEpACIDLang/idl/basetypes/*" result "/pEpACIDLang/idl/basetypes/*"
}; }
// TYPES // TYPES
// ----- // -----
@ -253,44 +253,44 @@ function "idl_type_of_generic_deftype" {
def "func:idl_method_get_params" { def "func:idl_method_get_params" {
param "idl_method_name"; param "idl_method_name";
result "//method[@name=$idl_method_name]/*[name()='param']/@name" result "//method[@name=$idl_method_name]/*[name()='param']/@name"
}; }
def "func:idl_method_get_throws" { def "func:idl_method_get_throws" {
param "idl_method_name"; param "idl_method_name";
result "//method[@name=$idl_method_name]/*[name()='throws']/@name" result "//method[@name=$idl_method_name]/*[name()='throws']/@name"
}; }
def "func:idl_method_param_get_mode" { def "func:idl_method_param_get_mode" {
param "idl_method_name"; param "idl_method_name";
param "param_name"; param "param_name";
result "//method[@name=$idl_method_name]/param[@name=$param_name]/@mode" result "//method[@name=$idl_method_name]/param[@name=$param_name]/@mode"
}; }
def "func:idl_method_param_get_type" { def "func:idl_method_param_get_type" {
param "idl_method_name"; param "idl_method_name";
param "param_name"; param "param_name";
result "//method[@name=$idl_method_name]/param[@name=$param_name]/@type" result "//method[@name=$idl_method_name]/param[@name=$param_name]/@type"
}; }
def "func:idl_method_param_get_doc" { def "func:idl_method_param_get_doc" {
param "idl_method_name"; param "idl_method_name";
param "param_name"; param "param_name";
result "//method[@name=$idl_method_name]/param[@name=$param_name]/@doc" result "//method[@name=$idl_method_name]/param[@name=$param_name]/@doc"
}; }
def "func:idl_method_doc_get_brief" { def "func:idl_method_doc_get_brief" {
param "idl_method_name"; param "idl_method_name";
result "//method[@name=$idl_method_name]/@brief" result "//method[@name=$idl_method_name]/@brief"
}; }
def "func:idl_method_doc_get_note" { def "func:idl_method_doc_get_note" {
param "idl_method_name"; param "idl_method_name";
result "//method[@name=$idl_method_name]/@note" result "//method[@name=$idl_method_name]/@note"
}; }
def "func:idl_method_throw_get_doc" { def "func:idl_method_throw_get_doc" {
param "idl_method_name"; param "idl_method_name";
param "throw_name"; param "throw_name";
result "//method[@name=$idl_method_name]/throws[@name=$throw_name]/@doc" result "//method[@name=$idl_method_name]/throws[@name=$throw_name]/@doc"
}; }

2
idl/pEpACIDLang.yml2

@ -57,7 +57,7 @@ idl {
// timestamp; // point of time // timestamp; // point of time
opaque; // opaque type (was: 'any') opaque; // opaque type (was: 'any')
} }
}; }
decl package @name; decl package @name;

8
idl/test_api/test_api.yml2

@ -15,12 +15,12 @@ pEpACIDLang {
enum enum1 { enum enum1 {
item item1; item item1;
item item2; item item2;
}; }
struct struct1 { struct struct1 {
field int int1; field int int1;
field size size1; field size size1;
}; }
}; }
}; }
} }

3
idl/test_api/test_api.ysl2

@ -46,8 +46,7 @@ tstylesheet {
def "func:typeinfo" { def "func:typeinfo" {
param "idltype"; param "idltype";
result call "typeinfo" with "idltype", "$idltype"; result call "typeinfo" with "idltype", "$idltype";
}; }
function "typeinfo" { function "typeinfo" {
param "idltype"; param "idltype";
|| ||

2
lm-c99/ig-c99.ysl2

@ -106,7 +106,7 @@ tstylesheet {
otherwise otherwise
error > c99_typeclass_of_idltype - is not an idltype: «$idltype» error > c99_typeclass_of_idltype - is not an idltype: «$idltype»
} }
}; }
def "func:c99_itemname_of_enumitem" { def "func:c99_itemname_of_enumitem" {

28
lm-c99/tests/test_ig_c99/test_ig_c99.yml2

@ -11,14 +11,14 @@ pEpACIDLang {
item item2; item item2;
item item3; item item3;
item item4; item item4;
}; }
enum explicit_dec_value_items { enum explicit_dec_value_items {
item item1 0; item item1 0;
item item2 2; item item2 2;
item item3 987; item item3 987;
item item4 -3; item item4 -3;
}; }
enum explicit_hex_value_items { enum explicit_hex_value_items {
item item1 "0x0"; item item1 "0x0";
@ -27,7 +27,7 @@ pEpACIDLang {
item item2 "0xff"; item item2 "0xff";
item item3 "0x987"; item item3 "0x987";
item item4 "0x3"; item item4 "0x3";
}; }
enum doc_well_formatted { enum doc_well_formatted {
item item1 doc="oneline doc"; item item1 doc="oneline doc";
@ -60,7 +60,7 @@ pEpACIDLang {
multiline multiline
doc doc
"""; """;
}; }
enum doc_badly_formattted { enum doc_badly_formattted {
item item1 0; item item1 0;
@ -77,7 +77,7 @@ pEpACIDLang {
multiline multiline
doc with bad formattting """; doc with bad formattting """;
}; }
// TEST // TEST
// ---- // ----
@ -89,7 +89,7 @@ pEpACIDLang {
Multiline Multiline
Doc Doc
"""; """;
}; }
method test_two_param { method test_two_param {
param borrow size p1 param borrow size p1
@ -102,13 +102,13 @@ pEpACIDLang {
Multiline Multiline
Doc Doc
"""; """;
}; }
struct struct1 { struct struct1 {
field int int1; field int int1;
field size size1; field size size1;
field string string1; field string string1;
}; }
// TEST // TEST
@ -121,13 +121,13 @@ pEpACIDLang {
item item1; item item1;
item item2; item item2;
item item3; item item3;
}; }
struct struct1 { struct struct1 {
field int int1; field int int1;
field size size1; field size size1;
field string string1; field string string1;
}; }
method method_test_all { method method_test_all {
@ -172,9 +172,9 @@ pEpACIDLang {
param mborrow stringlist mborrow_deftype_generic; param mborrow stringlist mborrow_deftype_generic;
param claim stringlist claim_deftype_generic; param claim stringlist claim_deftype_generic;
param provide stringlist provide_deftype_generic; param provide stringlist provide_deftype_generic;
}; }
}; }
}; }
}; }

Loading…
Cancel
Save