From 46d8e01177d4d6318c4e4687689fe1a4610ba676 Mon Sep 17 00:00:00 2001 From: Alexandre Terrasa Date: Sun, 14 Jul 2019 12:55:45 -0400 Subject: [PATCH] doc: Rename `synopsys` into `synopsis` Signed-off-by: Alexandre Terrasa --- share/nitdoc/css/nitdoc.css | 2 +- share/nitweb/stylesheets/nitlight.css | 2 +- share/nitweb/stylesheets/nitweb.css | 2 +- src/doc/templates/html_model.nit | 10 +- src/doc/templates/term_model.nit | 2 +- .../test_html_commands.sav/test_cmd_ancestors.res | 2 +- .../tests/test_html_commands.sav/test_cmd_call.res | 2 +- .../test_html_commands.sav/test_cmd_children.res | 2 +- .../test_html_commands.sav/test_cmd_comment.res | 2 +- .../test_cmd_descendants.res | 2 +- .../test_html_commands.sav/test_cmd_mains.res | 2 +- .../test_html_commands.sav/test_cmd_mentities.res | 2 +- .../test_html_commands.sav/test_cmd_parents.res | 2 +- .../test_html_commands.sav/test_cmd_search.res | 2 +- .../test_json_commands.sav/test_cmd_ancestors.res | 2 +- .../tests/test_json_commands.sav/test_cmd_call.res | 4 +- .../test_json_commands.sav/test_cmd_children.res | 6 +- .../test_cmd_descendants.res | 6 +- .../test_json_commands.sav/test_cmd_entity.res | 2 +- .../test_json_commands.sav/test_cmd_features.res | 18 +- .../test_json_commands.sav/test_cmd_mains.res | 2 +- .../test_json_commands.sav/test_cmd_mentities.res | 16 +- .../test_json_commands.sav/test_cmd_parents.res | 2 +- .../test_json_commands.sav/test_cmd_search.res | 2 +- .../test_classdefs_to_full_json.res | 48 ++-- .../test_classes_to_full_json.res | 42 +-- .../test_groups_to_full_json.res | 8 +- .../test_modules_to_full_json.res | 16 +- .../test_packages_to_full_json.res | 2 +- .../test_propdefs_to_full_json.res | 268 ++++++++++---------- .../test_props_to_full_json.res | 242 +++++++++--------- tests/sav/nitcatalog_args1.res | 26 +- 32 files changed, 374 insertions(+), 374 deletions(-) diff --git a/share/nitdoc/css/nitdoc.css b/share/nitdoc/css/nitdoc.css index 81153c7..0a51e03 100644 --- a/share/nitdoc/css/nitdoc.css +++ b/share/nitdoc/css/nitdoc.css @@ -109,7 +109,7 @@ pre { color: #333; } -.nitdoc .synopsys { +.nitdoc .synopsis { margin-top: 0; } diff --git a/share/nitweb/stylesheets/nitlight.css b/share/nitweb/stylesheets/nitlight.css index 63a1356..4c61f1e 100644 --- a/share/nitweb/stylesheets/nitlight.css +++ b/share/nitweb/stylesheets/nitlight.css @@ -22,7 +22,7 @@ color: #333; } -.nitdoc .synopsys { +.nitdoc .synopsis { margin-top: 0; } diff --git a/share/nitweb/stylesheets/nitweb.css b/share/nitweb/stylesheets/nitweb.css index ccfcdd0..9e4fc8d 100644 --- a/share/nitweb/stylesheets/nitweb.css +++ b/share/nitweb/stylesheets/nitweb.css @@ -73,7 +73,7 @@ entity-list:hover .btn-filter { /* doc */ -.nitdoc .synopsys { +.nitdoc .synopsis { margin-top: 0; } diff --git a/src/doc/templates/html_model.nit b/src/doc/templates/html_model.nit index 6ec000f..1b86587 100644 --- a/src/doc/templates/html_model.nit +++ b/src/doc/templates/html_model.nit @@ -400,7 +400,7 @@ redef class MDoc var html_synopsis: Writable is lazy do var res = new Template var syn = inline_proc.process(content.first) - res.add "{syn}" + res.add "{syn}" return res end @@ -420,13 +420,13 @@ redef class MDoc var decorator = markdown_proc.decorator.as(NitdocDecorator) decorator.current_mdoc = self res.add "
" - # do not use DocUnit as synopsys + # do not use DocUnit as synopsis if not lines.is_empty then if not lines.first.has_prefix(" ") and not lines.first.has_prefix("\t") then - # parse synopsys + # parse synopsis var syn = inline_proc.process(lines.shift) - res.add "

{syn}

" + res.add "

{syn}

" end end # check for annotations @@ -565,7 +565,7 @@ redef class Model # Get a markdown inline processor for Nitdoc comments. # - # This processor is specificaly designed to inlinable doc elements like synopsys. + # This processor is specificaly designed to inlinable doc elements like synopsis. var nitdoc_inline_processor: MarkdownProcessor is lazy, writable do var proc = new MarkdownProcessor proc.decorator = new InlineDecorator diff --git a/src/doc/templates/term_model.nit b/src/doc/templates/term_model.nit index 4a442c5..55351fb 100644 --- a/src/doc/templates/term_model.nit +++ b/src/doc/templates/term_model.nit @@ -35,7 +35,7 @@ redef class MDoc return res.write_to_string end - # Returns the synopsys formatted for the console + # Returns the synopsis formatted for the console fun cs_short_comment(no_color: nullable Bool): String do if no_color == null or not no_color then return content.first.green diff --git a/src/doc/templates/tests/test_html_commands.sav/test_cmd_ancestors.res b/src/doc/templates/tests/test_html_commands.sav/test_cmd_ancestors.res index 371d4cb..5b6b45f 100644 --- a/src/doc/templates/tests/test_html_commands.sav/test_cmd_ancestors.res +++ b/src/doc/templates/tests/test_html_commands.sav/test_cmd_ancestors.res @@ -1 +1 @@ - + diff --git a/src/doc/templates/tests/test_html_commands.sav/test_cmd_call.res b/src/doc/templates/tests/test_html_commands.sav/test_cmd_call.res index b851952..6663e41 100644 --- a/src/doc/templates/tests/test_html_commands.sav/test_cmd_call.res +++ b/src/doc/templates/tests/test_html_commands.sav/test_cmd_call.res @@ -1 +1 @@ - + diff --git a/src/doc/templates/tests/test_html_commands.sav/test_cmd_children.res b/src/doc/templates/tests/test_html_commands.sav/test_cmd_children.res index 04cf46a..d09e45e 100644 --- a/src/doc/templates/tests/test_html_commands.sav/test_cmd_children.res +++ b/src/doc/templates/tests/test_html_commands.sav/test_cmd_children.res @@ -1 +1 @@ -
  • Alcoholic - Alcoholics are good to nothing escept taking punches.
  • Magician - Magicians know magic and how to use it.
  • Warrior - Warriors are good for fighting.
+
  • Alcoholic - Alcoholics are good to nothing escept taking punches.
  • Magician - Magicians know magic and how to use it.
  • Warrior - Warriors are good for fighting.
diff --git a/src/doc/templates/tests/test_html_commands.sav/test_cmd_comment.res b/src/doc/templates/tests/test_html_commands.sav/test_cmd_comment.res index fb53356..c949391 100644 --- a/src/doc/templates/tests/test_html_commands.sav/test_cmd_comment.res +++ b/src/doc/templates/tests/test_html_commands.sav/test_cmd_comment.res @@ -1 +1 @@ -

Character - Characters can be played by both the human or the machine.

+

Character - Characters can be played by both the human or the machine.

diff --git a/src/doc/templates/tests/test_html_commands.sav/test_cmd_descendants.res b/src/doc/templates/tests/test_html_commands.sav/test_cmd_descendants.res index 04cf46a..d09e45e 100644 --- a/src/doc/templates/tests/test_html_commands.sav/test_cmd_descendants.res +++ b/src/doc/templates/tests/test_html_commands.sav/test_cmd_descendants.res @@ -1 +1 @@ -
  • Alcoholic - Alcoholics are good to nothing escept taking punches.
  • Magician - Magicians know magic and how to use it.
  • Warrior - Warriors are good for fighting.
+
  • Alcoholic - Alcoholics are good to nothing escept taking punches.
  • Magician - Magicians know magic and how to use it.
  • Warrior - Warriors are good for fighting.
diff --git a/src/doc/templates/tests/test_html_commands.sav/test_cmd_mains.res b/src/doc/templates/tests/test_html_commands.sav/test_cmd_mains.res index e00f6c0..fc5836b 100644 --- a/src/doc/templates/tests/test_html_commands.sav/test_cmd_mains.res +++ b/src/doc/templates/tests/test_html_commands.sav/test_cmd_mains.res @@ -1 +1 @@ -
  • test_prog - A test program with a fake model to check model tools.
+
  • test_prog - A test program with a fake model to check model tools.
diff --git a/src/doc/templates/tests/test_html_commands.sav/test_cmd_mentities.res b/src/doc/templates/tests/test_html_commands.sav/test_cmd_mentities.res index 59e52b3..e6f0d3a 100644 --- a/src/doc/templates/tests/test_html_commands.sav/test_cmd_mentities.res +++ b/src/doc/templates/tests/test_html_commands.sav/test_cmd_mentities.res @@ -1 +1 @@ - + diff --git a/src/doc/templates/tests/test_html_commands.sav/test_cmd_parents.res b/src/doc/templates/tests/test_html_commands.sav/test_cmd_parents.res index 2953e58..3d4fcc3 100644 --- a/src/doc/templates/tests/test_html_commands.sav/test_cmd_parents.res +++ b/src/doc/templates/tests/test_html_commands.sav/test_cmd_parents.res @@ -1 +1 @@ -
  • Career - A Career gives a characteristic bonus or malus to the character.
+
  • Career - A Career gives a characteristic bonus or malus to the character.
diff --git a/src/doc/templates/tests/test_html_commands.sav/test_cmd_search.res b/src/doc/templates/tests/test_html_commands.sav/test_cmd_search.res index 2953e58..3d4fcc3 100644 --- a/src/doc/templates/tests/test_html_commands.sav/test_cmd_search.res +++ b/src/doc/templates/tests/test_html_commands.sav/test_cmd_search.res @@ -1 +1 @@ -
  • Career - A Career gives a characteristic bonus or malus to the character.
+
  • Career - A Career gives a characteristic bonus or malus to the character.
diff --git a/src/doc/templates/tests/test_json_commands.sav/test_cmd_ancestors.res b/src/doc/templates/tests/test_json_commands.sav/test_cmd_ancestors.res index 26a3c60..359d753 100644 --- a/src/doc/templates/tests/test_json_commands.sav/test_cmd_ancestors.res +++ b/src/doc/templates/tests/test_json_commands.sav/test_cmd_ancestors.res @@ -12,7 +12,7 @@ "class_name": "MClass", "full_name": "test_prog::Object", "visibility": "public", - "html_synopsis": "Root of everything.", + "html_synopsis": "Root of everything.", "modifiers": ["interface"] }], "page": null, diff --git a/src/doc/templates/tests/test_json_commands.sav/test_cmd_call.res b/src/doc/templates/tests/test_json_commands.sav/test_cmd_call.res index b49877d..0b60952 100644 --- a/src/doc/templates/tests/test_json_commands.sav/test_cmd_call.res +++ b/src/doc/templates/tests/test_json_commands.sav/test_cmd_call.res @@ -38,7 +38,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Character$total_strengh", "visibility": "public", - "html_synopsis": "The actual strength of the character.", + "html_synopsis": "The actual strength of the character.", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -47,7 +47,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } }], diff --git a/src/doc/templates/tests/test_json_commands.sav/test_cmd_children.res b/src/doc/templates/tests/test_json_commands.sav/test_cmd_children.res index 0f1dd96..bc08d45 100644 --- a/src/doc/templates/tests/test_json_commands.sav/test_cmd_children.res +++ b/src/doc/templates/tests/test_json_commands.sav/test_cmd_children.res @@ -12,7 +12,7 @@ "class_name": "MClass", "full_name": "test_prog::Alcoholic", "visibility": "public", - "html_synopsis": "Alcoholics are good to nothing escept taking punches.", + "html_synopsis": "Alcoholics are good to nothing escept taking punches.", "modifiers": ["class"] }, { "name": "Magician", @@ -27,7 +27,7 @@ "class_name": "MClass", "full_name": "test_prog::Magician", "visibility": "public", - "html_synopsis": "Magicians know magic and how to use it.", + "html_synopsis": "Magicians know magic and how to use it.", "modifiers": ["class"] }, { "name": "Warrior", @@ -42,7 +42,7 @@ "class_name": "MClass", "full_name": "test_prog::Warrior", "visibility": "public", - "html_synopsis": "Warriors are good for fighting.", + "html_synopsis": "Warriors are good for fighting.", "modifiers": ["class"] }], "page": null, diff --git a/src/doc/templates/tests/test_json_commands.sav/test_cmd_descendants.res b/src/doc/templates/tests/test_json_commands.sav/test_cmd_descendants.res index 0f1dd96..bc08d45 100644 --- a/src/doc/templates/tests/test_json_commands.sav/test_cmd_descendants.res +++ b/src/doc/templates/tests/test_json_commands.sav/test_cmd_descendants.res @@ -12,7 +12,7 @@ "class_name": "MClass", "full_name": "test_prog::Alcoholic", "visibility": "public", - "html_synopsis": "Alcoholics are good to nothing escept taking punches.", + "html_synopsis": "Alcoholics are good to nothing escept taking punches.", "modifiers": ["class"] }, { "name": "Magician", @@ -27,7 +27,7 @@ "class_name": "MClass", "full_name": "test_prog::Magician", "visibility": "public", - "html_synopsis": "Magicians know magic and how to use it.", + "html_synopsis": "Magicians know magic and how to use it.", "modifiers": ["class"] }, { "name": "Warrior", @@ -42,7 +42,7 @@ "class_name": "MClass", "full_name": "test_prog::Warrior", "visibility": "public", - "html_synopsis": "Warriors are good for fighting.", + "html_synopsis": "Warriors are good for fighting.", "modifiers": ["class"] }], "page": null, diff --git a/src/doc/templates/tests/test_json_commands.sav/test_cmd_entity.res b/src/doc/templates/tests/test_json_commands.sav/test_cmd_entity.res index e229fc7..280be8f 100644 --- a/src/doc/templates/tests/test_json_commands.sav/test_cmd_entity.res +++ b/src/doc/templates/tests/test_json_commands.sav/test_cmd_entity.res @@ -11,6 +11,6 @@ "class_name": "MClass", "full_name": "test_prog::Character", "visibility": "public", - "html_synopsis": "Characters can be played by both the human or the machine.", + "html_synopsis": "Characters can be played by both the human or the machine.", "modifiers": ["class"] } diff --git a/src/doc/templates/tests/test_json_commands.sav/test_cmd_features.res b/src/doc/templates/tests/test_json_commands.sav/test_cmd_features.res index e483a2e..88019d8 100644 --- a/src/doc/templates/tests/test_json_commands.sav/test_cmd_features.res +++ b/src/doc/templates/tests/test_json_commands.sav/test_cmd_features.res @@ -20,7 +20,7 @@ "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }, { "name": "_intelligence_bonus", @@ -43,7 +43,7 @@ "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }, { "name": "_strength_bonus", @@ -66,7 +66,7 @@ "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }, { "name": "endurance_bonus", @@ -89,7 +89,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } }, { @@ -115,7 +115,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -164,7 +164,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } }, { @@ -190,7 +190,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -216,7 +216,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } }, { @@ -242,7 +242,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null diff --git a/src/doc/templates/tests/test_json_commands.sav/test_cmd_mains.res b/src/doc/templates/tests/test_json_commands.sav/test_cmd_mains.res index 529d91b..33c44c6 100644 --- a/src/doc/templates/tests/test_json_commands.sav/test_cmd_mains.res +++ b/src/doc/templates/tests/test_json_commands.sav/test_cmd_mains.res @@ -12,7 +12,7 @@ "class_name": "MModule", "full_name": "test_prog::test_prog", "visibility": "public", - "html_synopsis": "A test program with a fake model to check model tools.", + "html_synopsis": "A test program with a fake model to check model tools.", "modifiers": ["module"] }] } diff --git a/src/doc/templates/tests/test_json_commands.sav/test_cmd_mentities.res b/src/doc/templates/tests/test_json_commands.sav/test_cmd_mentities.res index 5d6c8d9..b4597e1 100644 --- a/src/doc/templates/tests/test_json_commands.sav/test_cmd_mentities.res +++ b/src/doc/templates/tests/test_json_commands.sav/test_cmd_mentities.res @@ -12,7 +12,7 @@ "class_name": "MModule", "full_name": "test_prog::careers", "visibility": "public", - "html_synopsis": "Careers of the game.", + "html_synopsis": "Careers of the game.", "modifiers": ["module"] }, { "name": "character", @@ -27,7 +27,7 @@ "class_name": "MModule", "full_name": "test_prog::character", "visibility": "public", - "html_synopsis": "Characters are playable entity in the world.", + "html_synopsis": "Characters are playable entity in the world.", "modifiers": ["module"] }, { "name": "combat", @@ -42,7 +42,7 @@ "class_name": "MModule", "full_name": "test_prog::combat", "visibility": "public", - "html_synopsis": "COmbat interactions between characters.", + "html_synopsis": "COmbat interactions between characters.", "modifiers": ["module"] }, { "name": "excluded", @@ -68,7 +68,7 @@ "class_name": "MModule", "full_name": "test_prog::game", "visibility": "public", - "html_synopsis": "A game abstraction for RPG.", + "html_synopsis": "A game abstraction for RPG.", "modifiers": ["module"] }, { "name": "game_examples", @@ -95,7 +95,7 @@ "class_name": "MModule", "full_name": "test_prog::platform", "visibility": "public", - "html_synopsis": "Declares base types allowed on the platform.", + "html_synopsis": "Declares base types allowed on the platform.", "modifiers": ["module"] }, { "name": "races", @@ -110,7 +110,7 @@ "class_name": "MModule", "full_name": "test_prog::races", "visibility": "public", - "html_synopsis": "Races of the game.", + "html_synopsis": "Races of the game.", "modifiers": ["module"] }, { "name": "rpg", @@ -125,7 +125,7 @@ "class_name": "MModule", "full_name": "test_prog::rpg", "visibility": "public", - "html_synopsis": "A worlg RPG abstraction.", + "html_synopsis": "A worlg RPG abstraction.", "modifiers": ["module"] }, { "name": "test_game", @@ -152,7 +152,7 @@ "class_name": "MModule", "full_name": "test_prog::test_prog", "visibility": "public", - "html_synopsis": "A test program with a fake model to check model tools.", + "html_synopsis": "A test program with a fake model to check model tools.", "modifiers": ["module"] }], "page": null, diff --git a/src/doc/templates/tests/test_json_commands.sav/test_cmd_parents.res b/src/doc/templates/tests/test_json_commands.sav/test_cmd_parents.res index 5e2fe63..f734635 100644 --- a/src/doc/templates/tests/test_json_commands.sav/test_cmd_parents.res +++ b/src/doc/templates/tests/test_json_commands.sav/test_cmd_parents.res @@ -12,7 +12,7 @@ "class_name": "MClass", "full_name": "test_prog::Career", "visibility": "public", - "html_synopsis": "A Career gives a characteristic bonus or malus to the character.", + "html_synopsis": "A Career gives a characteristic bonus or malus to the character.", "modifiers": ["abstract class"] }], "page": null, diff --git a/src/doc/templates/tests/test_json_commands.sav/test_cmd_search.res b/src/doc/templates/tests/test_json_commands.sav/test_cmd_search.res index 93e7114..853bacb 100644 --- a/src/doc/templates/tests/test_json_commands.sav/test_cmd_search.res +++ b/src/doc/templates/tests/test_json_commands.sav/test_cmd_search.res @@ -12,7 +12,7 @@ "class_name": "MClass", "full_name": "test_prog::Career", "visibility": "public", - "html_synopsis": "A Career gives a characteristic bonus or malus to the character.", + "html_synopsis": "A Career gives a characteristic bonus or malus to the character.", "modifiers": ["abstract class"] }], "page": 1, diff --git a/src/doc/templates/tests/test_json_model.sav/test_classdefs_to_full_json.res b/src/doc/templates/tests/test_json_model.sav/test_classdefs_to_full_json.res index 42e562f..7c30dab 100644 --- a/src/doc/templates/tests/test_json_model.sav/test_classdefs_to_full_json.res +++ b/src/doc/templates/tests/test_json_model.sav/test_classdefs_to_full_json.res @@ -11,7 +11,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Object", "visibility": "public", - "html_synopsis": "Root of everything.", + "html_synopsis": "Root of everything.", "modifiers": ["interface"], "is_intro": true } @@ -28,7 +28,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Int", "visibility": "public", - "html_synopsis": "Some services about Integers.", + "html_synopsis": "Some services about Integers.", "modifiers": ["class"], "is_intro": true } @@ -45,7 +45,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Float", "visibility": "public", - "html_synopsis": "Some services about Floats.", + "html_synopsis": "Some services about Floats.", "modifiers": ["class"], "is_intro": true } @@ -62,7 +62,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Bool", "visibility": "public", - "html_synopsis": "Booleans, true or false.", + "html_synopsis": "Booleans, true or false.", "modifiers": ["class"], "is_intro": true } @@ -79,7 +79,7 @@ "class_name": "MClassDef", "full_name": "test_prog$String", "visibility": "public", - "html_synopsis": "Strings (there is no chars...).", + "html_synopsis": "Strings (there is no chars...).", "modifiers": ["class"], "is_intro": true } @@ -96,7 +96,7 @@ "class_name": "MClassDef", "full_name": "test_prog$List", "visibility": "public", - "html_synopsis": "List of things.", + "html_synopsis": "List of things.", "modifiers": ["class"], "is_intro": true, "mparameters": [{ @@ -104,7 +104,7 @@ "mtype": { "name": "nullable Object", "synopsis": "Root of everything.", - "html_synopsis": "Root of everything." + "html_synopsis": "Root of everything." } }] } @@ -121,7 +121,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Sys", "visibility": "public", - "html_synopsis": "Sys", + "html_synopsis": "Sys", "modifiers": ["class"], "is_intro": true } @@ -141,7 +141,7 @@ "class_name": "MClassDef", "full_name": "test_prog::test_prog$Sys", "visibility": "public", - "html_synopsis": "Sys", + "html_synopsis": "Sys", "modifiers": ["redef", "class"] } { @@ -157,7 +157,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Career", "visibility": "public", - "html_synopsis": "A Career gives a characteristic bonus or malus to the character.", + "html_synopsis": "A Career gives a characteristic bonus or malus to the character.", "modifiers": ["abstract class"], "is_intro": true } @@ -174,7 +174,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Warrior", "visibility": "public", - "html_synopsis": "Warriors are good for fighting.", + "html_synopsis": "Warriors are good for fighting.", "modifiers": ["class"], "is_intro": true } @@ -191,7 +191,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Magician", "visibility": "public", - "html_synopsis": "Magicians know magic and how to use it.", + "html_synopsis": "Magicians know magic and how to use it.", "modifiers": ["class"], "is_intro": true } @@ -208,7 +208,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Alcoholic", "visibility": "public", - "html_synopsis": "Alcoholics are good to nothing escept taking punches.", + "html_synopsis": "Alcoholics are good to nothing escept taking punches.", "modifiers": ["class"], "is_intro": true } @@ -225,7 +225,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Race", "visibility": "public", - "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life.", + "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life.", "modifiers": ["abstract class"], "is_intro": true } @@ -242,7 +242,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Human", "visibility": "public", - "html_synopsis": "Humans are able to do everithing.", + "html_synopsis": "Humans are able to do everithing.", "modifiers": ["class"], "is_intro": true } @@ -259,7 +259,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Dwarf", "visibility": "public", - "html_synopsis": "Dwarves make strong warriors.", + "html_synopsis": "Dwarves make strong warriors.", "modifiers": ["class"], "is_intro": true } @@ -279,7 +279,7 @@ "class_name": "MClassDef", "full_name": "test_prog::combat$Dwarf", "visibility": "public", - "html_synopsis": "Dwarves can be used as weapons.", + "html_synopsis": "Dwarves can be used as weapons.", "modifiers": ["redef", "class"] } { @@ -295,7 +295,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Elf", "visibility": "public", - "html_synopsis": "Elves make good magicians.", + "html_synopsis": "Elves make good magicians.", "modifiers": ["class"], "is_intro": true } @@ -312,7 +312,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Character", "visibility": "public", - "html_synopsis": "Characters can be played by both the human or the machine.", + "html_synopsis": "Characters can be played by both the human or the machine.", "modifiers": ["class"], "is_intro": true } @@ -332,7 +332,7 @@ "class_name": "MClassDef", "full_name": "test_prog::combat$Character", "visibility": "public", - "html_synopsis": "Characters are now Comabatable", + "html_synopsis": "Characters are now Comabatable", "modifiers": ["redef", "class"] } { @@ -348,7 +348,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Weapon", "visibility": "public", - "html_synopsis": "Something that can be used to attack someone and inflict damage.", + "html_synopsis": "Something that can be used to attack someone and inflict damage.", "modifiers": ["interface"], "is_intro": true } @@ -365,7 +365,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Combatable", "visibility": "public", - "html_synopsis": "Something that can be combatted, it can attack and defend.", + "html_synopsis": "Something that can be combatted, it can attack and defend.", "modifiers": ["interface"], "is_intro": true } @@ -382,7 +382,7 @@ "class_name": "MClassDef", "full_name": "test_prog$Game", "visibility": "public", - "html_synopsis": "This is the interface you have to implement to use ure gaming platform.", + "html_synopsis": "This is the interface you have to implement to use ure gaming platform.", "modifiers": ["interface"], "is_intro": true } @@ -399,7 +399,7 @@ "class_name": "MClassDef", "full_name": "test_prog$MyGame", "visibility": "public", - "html_synopsis": "This is an example of how to implement the Game interface", + "html_synopsis": "This is an example of how to implement the Game interface", "modifiers": ["class"], "is_intro": true } diff --git a/src/doc/templates/tests/test_json_model.sav/test_classes_to_full_json.res b/src/doc/templates/tests/test_json_model.sav/test_classes_to_full_json.res index 18c77c4..bd913fb 100644 --- a/src/doc/templates/tests/test_json_model.sav/test_classes_to_full_json.res +++ b/src/doc/templates/tests/test_json_model.sav/test_classes_to_full_json.res @@ -11,7 +11,7 @@ "class_name": "MClass", "full_name": "test_prog::Object", "visibility": "public", - "html_synopsis": "Root of everything.", + "html_synopsis": "Root of everything.", "modifiers": ["interface"] } { @@ -27,7 +27,7 @@ "class_name": "MClass", "full_name": "test_prog::Int", "visibility": "public", - "html_synopsis": "Some services about Integers.", + "html_synopsis": "Some services about Integers.", "modifiers": ["class"] } { @@ -43,7 +43,7 @@ "class_name": "MClass", "full_name": "test_prog::Float", "visibility": "public", - "html_synopsis": "Some services about Floats.", + "html_synopsis": "Some services about Floats.", "modifiers": ["class"] } { @@ -59,7 +59,7 @@ "class_name": "MClass", "full_name": "test_prog::Bool", "visibility": "public", - "html_synopsis": "Booleans, true or false.", + "html_synopsis": "Booleans, true or false.", "modifiers": ["class"] } { @@ -75,7 +75,7 @@ "class_name": "MClass", "full_name": "test_prog::String", "visibility": "public", - "html_synopsis": "Strings (there is no chars...).", + "html_synopsis": "Strings (there is no chars...).", "modifiers": ["class"] } { @@ -91,14 +91,14 @@ "class_name": "MClass", "full_name": "test_prog::List", "visibility": "public", - "html_synopsis": "List of things.", + "html_synopsis": "List of things.", "modifiers": ["class"], "mparameters": [{ "name": "E", "mtype": { "name": "nullable Object", "synopsis": "Root of everything.", - "html_synopsis": "Root of everything." + "html_synopsis": "Root of everything." } }] } @@ -115,7 +115,7 @@ "class_name": "MClass", "full_name": "test_prog::Sys", "visibility": "public", - "html_synopsis": "Sys", + "html_synopsis": "Sys", "modifiers": ["class"] } { @@ -131,7 +131,7 @@ "class_name": "MClass", "full_name": "test_prog::Career", "visibility": "public", - "html_synopsis": "A Career gives a characteristic bonus or malus to the character.", + "html_synopsis": "A Career gives a characteristic bonus or malus to the character.", "modifiers": ["abstract class"] } { @@ -147,7 +147,7 @@ "class_name": "MClass", "full_name": "test_prog::Warrior", "visibility": "public", - "html_synopsis": "Warriors are good for fighting.", + "html_synopsis": "Warriors are good for fighting.", "modifiers": ["class"] } { @@ -163,7 +163,7 @@ "class_name": "MClass", "full_name": "test_prog::Magician", "visibility": "public", - "html_synopsis": "Magicians know magic and how to use it.", + "html_synopsis": "Magicians know magic and how to use it.", "modifiers": ["class"] } { @@ -179,7 +179,7 @@ "class_name": "MClass", "full_name": "test_prog::Alcoholic", "visibility": "public", - "html_synopsis": "Alcoholics are good to nothing escept taking punches.", + "html_synopsis": "Alcoholics are good to nothing escept taking punches.", "modifiers": ["class"] } { @@ -195,7 +195,7 @@ "class_name": "MClass", "full_name": "test_prog::Race", "visibility": "public", - "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life.", + "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life.", "modifiers": ["abstract class"] } { @@ -211,7 +211,7 @@ "class_name": "MClass", "full_name": "test_prog::Human", "visibility": "public", - "html_synopsis": "Humans are able to do everithing.", + "html_synopsis": "Humans are able to do everithing.", "modifiers": ["class"] } { @@ -227,7 +227,7 @@ "class_name": "MClass", "full_name": "test_prog::Dwarf", "visibility": "public", - "html_synopsis": "Dwarves make strong warriors.", + "html_synopsis": "Dwarves make strong warriors.", "modifiers": ["class"] } { @@ -243,7 +243,7 @@ "class_name": "MClass", "full_name": "test_prog::Elf", "visibility": "public", - "html_synopsis": "Elves make good magicians.", + "html_synopsis": "Elves make good magicians.", "modifiers": ["class"] } { @@ -259,7 +259,7 @@ "class_name": "MClass", "full_name": "test_prog::Character", "visibility": "public", - "html_synopsis": "Characters can be played by both the human or the machine.", + "html_synopsis": "Characters can be played by both the human or the machine.", "modifiers": ["class"] } { @@ -275,7 +275,7 @@ "class_name": "MClass", "full_name": "test_prog::Weapon", "visibility": "public", - "html_synopsis": "Something that can be used to attack someone and inflict damage.", + "html_synopsis": "Something that can be used to attack someone and inflict damage.", "modifiers": ["interface"] } { @@ -291,7 +291,7 @@ "class_name": "MClass", "full_name": "test_prog::Combatable", "visibility": "public", - "html_synopsis": "Something that can be combatted, it can attack and defend.", + "html_synopsis": "Something that can be combatted, it can attack and defend.", "modifiers": ["interface"] } { @@ -307,7 +307,7 @@ "class_name": "MClass", "full_name": "test_prog::Game", "visibility": "public", - "html_synopsis": "This is the interface you have to implement to use ure gaming platform.", + "html_synopsis": "This is the interface you have to implement to use ure gaming platform.", "modifiers": ["interface"] } { @@ -323,7 +323,7 @@ "class_name": "MClass", "full_name": "test_prog::MyGame", "visibility": "public", - "html_synopsis": "This is an example of how to implement the Game interface", + "html_synopsis": "This is an example of how to implement the Game interface", "modifiers": ["class"] } { diff --git a/src/doc/templates/tests/test_json_model.sav/test_groups_to_full_json.res b/src/doc/templates/tests/test_json_model.sav/test_groups_to_full_json.res index 885eefe..48db918 100644 --- a/src/doc/templates/tests/test_json_model.sav/test_groups_to_full_json.res +++ b/src/doc/templates/tests/test_json_model.sav/test_groups_to_full_json.res @@ -8,7 +8,7 @@ "class_name": "MGroup", "full_name": "test_prog>", "visibility": "public", - "html_synopsis": "Test program for model tools.", + "html_synopsis": "Test program for model tools.", "modifiers": ["group"] } { @@ -37,7 +37,7 @@ "class_name": "MGroup", "full_name": "test_prog>game>", "visibility": "public", - "html_synopsis": "Gaming group", + "html_synopsis": "Gaming group", "modifiers": ["group"] } { @@ -66,7 +66,7 @@ "class_name": "MGroup", "full_name": "test_prog>platform>", "visibility": "public", - "html_synopsis": "Fictive Crappy Platform.", + "html_synopsis": "Fictive Crappy Platform.", "modifiers": ["group"] } { @@ -82,7 +82,7 @@ "class_name": "MGroup", "full_name": "test_prog>rpg>", "visibility": "public", - "html_synopsis": "Role Playing Game group", + "html_synopsis": "Role Playing Game group", "modifiers": ["group"] } { diff --git a/src/doc/templates/tests/test_json_model.sav/test_modules_to_full_json.res b/src/doc/templates/tests/test_json_model.sav/test_modules_to_full_json.res index 857fcb1..941833d 100644 --- a/src/doc/templates/tests/test_json_model.sav/test_modules_to_full_json.res +++ b/src/doc/templates/tests/test_json_model.sav/test_modules_to_full_json.res @@ -36,7 +36,7 @@ "class_name": "MModule", "full_name": "test_prog::game", "visibility": "public", - "html_synopsis": "A game abstraction for RPG.", + "html_synopsis": "A game abstraction for RPG.", "modifiers": ["module"] } { @@ -52,7 +52,7 @@ "class_name": "MModule", "full_name": "test_prog::platform", "visibility": "public", - "html_synopsis": "Declares base types allowed on the platform.", + "html_synopsis": "Declares base types allowed on the platform.", "modifiers": ["module"] } { @@ -68,7 +68,7 @@ "class_name": "MModule", "full_name": "test_prog::careers", "visibility": "public", - "html_synopsis": "Careers of the game.", + "html_synopsis": "Careers of the game.", "modifiers": ["module"] } { @@ -84,7 +84,7 @@ "class_name": "MModule", "full_name": "test_prog::character", "visibility": "public", - "html_synopsis": "Characters are playable entity in the world.", + "html_synopsis": "Characters are playable entity in the world.", "modifiers": ["module"] } { @@ -100,7 +100,7 @@ "class_name": "MModule", "full_name": "test_prog::combat", "visibility": "public", - "html_synopsis": "COmbat interactions between characters.", + "html_synopsis": "COmbat interactions between characters.", "modifiers": ["module"] } { @@ -116,7 +116,7 @@ "class_name": "MModule", "full_name": "test_prog::races", "visibility": "public", - "html_synopsis": "Races of the game.", + "html_synopsis": "Races of the game.", "modifiers": ["module"] } { @@ -132,7 +132,7 @@ "class_name": "MModule", "full_name": "test_prog::rpg", "visibility": "public", - "html_synopsis": "A worlg RPG abstraction.", + "html_synopsis": "A worlg RPG abstraction.", "modifiers": ["module"] } { @@ -148,7 +148,7 @@ "class_name": "MModule", "full_name": "test_prog::test_prog", "visibility": "public", - "html_synopsis": "A test program with a fake model to check model tools.", + "html_synopsis": "A test program with a fake model to check model tools.", "modifiers": ["module"] } { diff --git a/src/doc/templates/tests/test_json_model.sav/test_packages_to_full_json.res b/src/doc/templates/tests/test_json_model.sav/test_packages_to_full_json.res index 8715a80..6291dc0 100644 --- a/src/doc/templates/tests/test_json_model.sav/test_packages_to_full_json.res +++ b/src/doc/templates/tests/test_json_model.sav/test_packages_to_full_json.res @@ -8,7 +8,7 @@ "class_name": "MPackage", "full_name": "test_prog", "visibility": "public", - "html_synopsis": "Test program for model tools.", + "html_synopsis": "Test program for model tools.", "modifiers": ["package"], "license": "Apache-2.0", "tags": ["test", "game"] diff --git a/src/doc/templates/tests/test_json_model.sav/test_propdefs_to_full_json.res b/src/doc/templates/tests/test_json_model.sav/test_propdefs_to_full_json.res index ea14337..802b1ec 100644 --- a/src/doc/templates/tests/test_json_model.sav/test_propdefs_to_full_json.res +++ b/src/doc/templates/tests/test_json_model.sav/test_propdefs_to_full_json.res @@ -14,13 +14,13 @@ "class_name": "MVirtualTypeDef", "full_name": "test_prog$Object$OTHER", "visibility": "public", - "html_synopsis": "Used for comparisons.", + "html_synopsis": "Used for comparisons.", "modifiers": ["type"], "is_intro": true, "bound": { "name": "nullable Object", "synopsis": "Root of everything.", - "html_synopsis": "Root of everything." + "html_synopsis": "Root of everything." } } { @@ -39,7 +39,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Object$==", "visibility": "public", - "html_synopsis": "Is other equqls to self?", + "html_synopsis": "Is other equqls to self?", "modifiers": ["intern", "fun"], "is_intro": true, "msignature": { @@ -50,13 +50,13 @@ "mtype": { "name": "OTHER", "synopsis": "Used for comparisons.", - "html_synopsis": "Used for comparisons." + "html_synopsis": "Used for comparisons." } }], "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -76,7 +76,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Object$!=", "visibility": "public", - "html_synopsis": "Is other different from self?", + "html_synopsis": "Is other different from self?", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -87,13 +87,13 @@ "mtype": { "name": "OTHER", "synopsis": "Used for comparisons.", - "html_synopsis": "Used for comparisons." + "html_synopsis": "Used for comparisons." } }], "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -357,7 +357,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -385,13 +385,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -419,13 +419,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -453,13 +453,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -487,13 +487,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -521,13 +521,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -553,7 +553,7 @@ "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -581,13 +581,13 @@ "mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } }], "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -615,13 +615,13 @@ "mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } }], "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -649,13 +649,13 @@ "mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } }], "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -683,13 +683,13 @@ "mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } }], "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -717,13 +717,13 @@ "mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } }], "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -792,7 +792,7 @@ "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -817,7 +817,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -845,7 +845,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -870,7 +870,7 @@ "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -895,7 +895,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -923,7 +923,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -948,7 +948,7 @@ "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -973,7 +973,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1001,7 +1001,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -1023,13 +1023,13 @@ "class_name": "MAttributeDef", "full_name": "test_prog$Race$_base_strength", "visibility": "private", - "html_synopsis": "Used to represents how strong the race is.", + "html_synopsis": "Used to represents how strong the race is.", "modifiers": ["private", "var"], "is_intro": true, "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -1048,7 +1048,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Race$base_strength", "visibility": "public", - "html_synopsis": "Used to represents how strong the race is.", + "html_synopsis": "Used to represents how strong the race is.", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -1057,7 +1057,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1077,7 +1077,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Race$base_strength=", "visibility": "protected", - "html_synopsis": "Used to represents how strong the race is.", + "html_synopsis": "Used to represents how strong the race is.", "modifiers": ["protected", "fun"], "is_intro": true, "msignature": { @@ -1088,7 +1088,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -1110,13 +1110,13 @@ "class_name": "MAttributeDef", "full_name": "test_prog$Race$_base_endurance", "visibility": "private", - "html_synopsis": "Used to represents how the race can absorb damage.", + "html_synopsis": "Used to represents how the race can absorb damage.", "modifiers": ["private", "var"], "is_intro": true, "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -1135,7 +1135,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Race$base_endurance", "visibility": "public", - "html_synopsis": "Used to represents how the race can absorb damage.", + "html_synopsis": "Used to represents how the race can absorb damage.", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -1144,7 +1144,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1164,7 +1164,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Race$base_endurance=", "visibility": "protected", - "html_synopsis": "Used to represents how the race can absorb damage.", + "html_synopsis": "Used to represents how the race can absorb damage.", "modifiers": ["protected", "fun"], "is_intro": true, "msignature": { @@ -1175,7 +1175,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -1197,13 +1197,13 @@ "class_name": "MAttributeDef", "full_name": "test_prog$Race$_base_intelligence", "visibility": "private", - "html_synopsis": "Is this race smart?", + "html_synopsis": "Is this race smart?", "modifiers": ["private", "var"], "is_intro": true, "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -1222,7 +1222,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Race$base_intelligence", "visibility": "public", - "html_synopsis": "Is this race smart?", + "html_synopsis": "Is this race smart?", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -1231,7 +1231,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1251,7 +1251,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Race$base_intelligence=", "visibility": "protected", - "html_synopsis": "Is this race smart?", + "html_synopsis": "Is this race smart?", "modifiers": ["protected", "fun"], "is_intro": true, "msignature": { @@ -1262,7 +1262,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -1284,13 +1284,13 @@ "class_name": "MAttributeDef", "full_name": "test_prog$Character$_race", "visibility": "private", - "html_synopsis": "The Race of the character.", + "html_synopsis": "The Race of the character.", "modifiers": ["private", "var"], "is_intro": true, "static_mtype": { "name": "Race", "synopsis": "Race determines basic characteristics and what the character will be able to do in life.", - "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." + "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." } } { @@ -1309,7 +1309,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Character$race", "visibility": "public", - "html_synopsis": "The Race of the character.", + "html_synopsis": "The Race of the character.", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -1318,7 +1318,7 @@ "return_mtype": { "name": "Race", "synopsis": "Race determines basic characteristics and what the character will be able to do in life.", - "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." + "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." } } } @@ -1338,7 +1338,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Character$race=", "visibility": "protected", - "html_synopsis": "The Race of the character.", + "html_synopsis": "The Race of the character.", "modifiers": ["protected", "fun"], "is_intro": true, "msignature": { @@ -1349,7 +1349,7 @@ "mtype": { "name": "Race", "synopsis": "Race determines basic characteristics and what the character will be able to do in life.", - "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." + "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." } }], "return_mtype": null @@ -1371,13 +1371,13 @@ "class_name": "MAttributeDef", "full_name": "test_prog$Character$_career", "visibility": "private", - "html_synopsis": "The current Career of the character.", + "html_synopsis": "The current Career of the character.", "modifiers": ["private", "var"], "is_intro": true, "static_mtype": { "name": "nullable Career", "synopsis": "A `Career` gives a characteristic bonus or malus to the character.", - "html_synopsis": "A Career gives a characteristic bonus or malus to the character." + "html_synopsis": "A Career gives a characteristic bonus or malus to the character." } } { @@ -1396,7 +1396,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Character$career", "visibility": "public", - "html_synopsis": "The current Career of the character.", + "html_synopsis": "The current Career of the character.", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -1405,7 +1405,7 @@ "return_mtype": { "name": "nullable Career", "synopsis": "A `Career` gives a characteristic bonus or malus to the character.", - "html_synopsis": "A Career gives a characteristic bonus or malus to the character." + "html_synopsis": "A Career gives a characteristic bonus or malus to the character." } } } @@ -1425,7 +1425,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Character$career=", "visibility": "public", - "html_synopsis": "The current Career of the character.", + "html_synopsis": "The current Career of the character.", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -1436,7 +1436,7 @@ "mtype": { "name": "nullable Career", "synopsis": "A `Career` gives a characteristic bonus or malus to the character.", - "html_synopsis": "A Career gives a characteristic bonus or malus to the character." + "html_synopsis": "A Career gives a characteristic bonus or malus to the character." } }], "return_mtype": null @@ -1483,7 +1483,7 @@ "static_mtype": { "name": "String", "synopsis": "Strings (there is no chars...).", - "html_synopsis": "Strings (there is no chars...)." + "html_synopsis": "Strings (there is no chars...)." } } { @@ -1508,7 +1508,7 @@ "return_mtype": { "name": "String", "synopsis": "Strings (there is no chars...).", - "html_synopsis": "Strings (there is no chars...)." + "html_synopsis": "Strings (there is no chars...)." } } } @@ -1536,7 +1536,7 @@ "mtype": { "name": "String", "synopsis": "Strings (there is no chars...).", - "html_synopsis": "Strings (there is no chars...)." + "html_synopsis": "Strings (there is no chars...)." } }], "return_mtype": null @@ -1561,7 +1561,7 @@ "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -1586,7 +1586,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1614,7 +1614,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -1639,7 +1639,7 @@ "static_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } { @@ -1664,7 +1664,7 @@ "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -1692,7 +1692,7 @@ "mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } }], "return_mtype": null @@ -1714,7 +1714,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Character$total_strengh", "visibility": "public", - "html_synopsis": "The actual strength of the character.", + "html_synopsis": "The actual strength of the character.", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -1723,7 +1723,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1743,7 +1743,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Character$total_endurance", "visibility": "public", - "html_synopsis": "The actual endurance of the character.", + "html_synopsis": "The actual endurance of the character.", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -1752,7 +1752,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1772,7 +1772,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Character$total_intelligence", "visibility": "public", - "html_synopsis": "The acutal intelligence of the character.", + "html_synopsis": "The acutal intelligence of the character.", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -1781,7 +1781,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1801,7 +1801,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Character$max_health", "visibility": "public", - "html_synopsis": "Maximum health of the character.", + "html_synopsis": "Maximum health of the character.", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -1810,7 +1810,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1830,13 +1830,13 @@ "class_name": "MAttributeDef", "full_name": "test_prog$Character$_health", "visibility": "private", - "html_synopsis": "The current health of the character.", + "html_synopsis": "The current health of the character.", "modifiers": ["private", "var"], "is_intro": true, "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -1855,7 +1855,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Character$health", "visibility": "public", - "html_synopsis": "The current health of the character.", + "html_synopsis": "The current health of the character.", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -1864,7 +1864,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1884,7 +1884,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Character$health=", "visibility": "protected", - "html_synopsis": "The current health of the character.", + "html_synopsis": "The current health of the character.", "modifiers": ["protected", "fun"], "is_intro": true, "msignature": { @@ -1895,7 +1895,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -1917,7 +1917,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Weapon$dps", "visibility": "public", - "html_synopsis": "Damage per second inflicted by this weapon.", + "html_synopsis": "Damage per second inflicted by this weapon.", "modifiers": ["abstract", "fun"], "is_intro": true, "msignature": { @@ -1926,7 +1926,7 @@ "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -1952,7 +1952,7 @@ "class_name": "MMethodDef", "full_name": "test_prog::combat$Dwarf$Weapon::dps", "visibility": "public", - "html_synopsis": "Dwarf dps are based on the dwarf base_endurance (represents weight here)", + "html_synopsis": "Dwarf dps are based on the dwarf base_endurance (represents weight here)", "modifiers": ["redef", "fun"], "msignature": { "arity": 0, @@ -1960,7 +1960,7 @@ "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -1986,7 +1986,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -2012,7 +2012,7 @@ "class_name": "MMethodDef", "full_name": "test_prog::combat$Character$Combatable::hit_points", "visibility": "public", - "html_synopsis": "Use character health to determines hit_points.", + "html_synopsis": "Use character health to determines hit_points.", "modifiers": ["redef", "fun"], "msignature": { "arity": 0, @@ -2020,7 +2020,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -2040,7 +2040,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Combatable$attack", "visibility": "public", - "html_synopsis": "A Combatable can attack a target that is also a Combatable.", + "html_synopsis": "A Combatable can attack a target that is also a Combatable.", "modifiers": ["abstract", "fun"], "is_intro": true, "msignature": { @@ -2051,7 +2051,7 @@ "mtype": { "name": "Combatable", "synopsis": "Something that can be combatted, it can `attack` and `defend`.", - "html_synopsis": "Something that can be combatted, it can attack and defend." + "html_synopsis": "Something that can be combatted, it can attack and defend." } }, { "is_vararg": false, @@ -2059,13 +2059,13 @@ "mtype": { "name": "Weapon", "synopsis": "Something that can be used to attack someone and inflict damage.", - "html_synopsis": "Something that can be used to attack someone and inflict damage." + "html_synopsis": "Something that can be used to attack someone and inflict damage." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -2085,7 +2085,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Combatable$direct_attack", "visibility": "public", - "html_synopsis": "Like attack but cannot be defended.", + "html_synopsis": "Like attack but cannot be defended.", "modifiers": ["abstract", "fun"], "is_intro": true, "msignature": { @@ -2096,7 +2096,7 @@ "mtype": { "name": "Combatable", "synopsis": "Something that can be combatted, it can `attack` and `defend`.", - "html_synopsis": "Something that can be combatted, it can attack and defend." + "html_synopsis": "Something that can be combatted, it can attack and defend." } }, { "is_vararg": false, @@ -2104,13 +2104,13 @@ "mtype": { "name": "Weapon", "synopsis": "Something that can be used to attack someone and inflict damage.", - "html_synopsis": "Something that can be used to attack someone and inflict damage." + "html_synopsis": "Something that can be used to attack someone and inflict damage." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -2130,7 +2130,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Combatable$defend", "visibility": "public", - "html_synopsis": "Combatable can defend against attacks.", + "html_synopsis": "Combatable can defend against attacks.", "modifiers": ["abstract", "fun"], "is_intro": true, "msignature": { @@ -2141,13 +2141,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -2167,7 +2167,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Combatable$is_dead", "visibility": "public", - "html_synopsis": "Is the character still have hit_points?", + "html_synopsis": "Is the character still have hit_points?", "modifiers": ["fun"], "is_intro": true, "msignature": { @@ -2176,7 +2176,7 @@ "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -2196,7 +2196,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Game$player_characters", "visibility": "public", - "html_synopsis": "Characters played by human players.", + "html_synopsis": "Characters played by human players.", "modifiers": ["abstract", "fun"], "is_intro": true, "msignature": { @@ -2205,7 +2205,7 @@ "return_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } } @@ -2228,7 +2228,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$MyGame$Game::player_characters", "visibility": "public", - "html_synopsis": "Characters played by human players.", + "html_synopsis": "Characters played by human players.", "modifiers": ["redef", "fun"], "msignature": { "arity": 0, @@ -2236,7 +2236,7 @@ "return_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } } @@ -2258,7 +2258,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$TestGame$Game::player_characters", "visibility": "public", - "html_synopsis": "Characters played by human players.", + "html_synopsis": "Characters played by human players.", "modifiers": ["redef", "fun"], "msignature": { "arity": 0, @@ -2266,7 +2266,7 @@ "return_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } } @@ -2286,7 +2286,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Game$computer_characters", "visibility": "public", - "html_synopsis": "Characters players by computer.", + "html_synopsis": "Characters players by computer.", "modifiers": ["abstract", "fun"], "is_intro": true, "msignature": { @@ -2295,7 +2295,7 @@ "return_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } } @@ -2318,7 +2318,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$MyGame$Game::computer_characters", "visibility": "public", - "html_synopsis": "Characters players by computer.", + "html_synopsis": "Characters players by computer.", "modifiers": ["redef", "fun"], "msignature": { "arity": 0, @@ -2326,7 +2326,7 @@ "return_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } } @@ -2346,7 +2346,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Game$start_game", "visibility": "public", - "html_synopsis": "Start the game.", + "html_synopsis": "Start the game.", "modifiers": ["abstract", "fun"], "is_intro": true, "msignature": { @@ -2374,7 +2374,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$MyGame$Game::start_game", "visibility": "public", - "html_synopsis": "Start the game.", + "html_synopsis": "Start the game.", "modifiers": ["redef", "fun"], "msignature": { "arity": 0, @@ -2398,7 +2398,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Game$pause_game", "visibility": "public", - "html_synopsis": "Pause the game.", + "html_synopsis": "Pause the game.", "modifiers": ["abstract", "fun"], "is_intro": true, "msignature": { @@ -2426,7 +2426,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$MyGame$Game::pause_game", "visibility": "public", - "html_synopsis": "Pause the game.", + "html_synopsis": "Pause the game.", "modifiers": ["redef", "fun"], "msignature": { "arity": 0, @@ -2450,7 +2450,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$Game$stop_game", "visibility": "public", - "html_synopsis": "Stop the game.", + "html_synopsis": "Stop the game.", "modifiers": ["abstract", "fun"], "is_intro": true, "msignature": { @@ -2478,7 +2478,7 @@ "class_name": "MMethodDef", "full_name": "test_prog$MyGame$Game::stop_game", "visibility": "public", - "html_synopsis": "Stop the game.", + "html_synopsis": "Stop the game.", "modifiers": ["redef", "fun"], "msignature": { "arity": 0, @@ -2505,7 +2505,7 @@ "static_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } { @@ -2532,7 +2532,7 @@ "mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } }], "return_mtype": null @@ -2557,7 +2557,7 @@ "static_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } { @@ -2584,7 +2584,7 @@ "mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } }], "return_mtype": null @@ -2629,7 +2629,7 @@ "static_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } { @@ -2655,7 +2655,7 @@ "mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } }], "return_mtype": null diff --git a/src/doc/templates/tests/test_json_model.sav/test_props_to_full_json.res b/src/doc/templates/tests/test_json_model.sav/test_props_to_full_json.res index 961fa79..09644aa 100644 --- a/src/doc/templates/tests/test_json_model.sav/test_props_to_full_json.res +++ b/src/doc/templates/tests/test_json_model.sav/test_props_to_full_json.res @@ -14,12 +14,12 @@ "class_name": "MVirtualTypeProp", "full_name": "test_prog::Object::OTHER", "visibility": "public", - "html_synopsis": "Used for comparisons.", + "html_synopsis": "Used for comparisons.", "modifiers": ["type"], "bound": { "name": "nullable Object", "synopsis": "Root of everything.", - "html_synopsis": "Root of everything." + "html_synopsis": "Root of everything." } } { @@ -38,7 +38,7 @@ "class_name": "MMethod", "full_name": "test_prog::Object::==", "visibility": "public", - "html_synopsis": "Is other equqls to self?", + "html_synopsis": "Is other equqls to self?", "modifiers": ["intern", "fun"], "msignature": { "arity": 1, @@ -48,13 +48,13 @@ "mtype": { "name": "OTHER", "synopsis": "Used for comparisons.", - "html_synopsis": "Used for comparisons." + "html_synopsis": "Used for comparisons." } }], "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -74,7 +74,7 @@ "class_name": "MMethod", "full_name": "test_prog::Object::!=", "visibility": "public", - "html_synopsis": "Is other different from self?", + "html_synopsis": "Is other different from self?", "modifiers": ["fun"], "msignature": { "arity": 1, @@ -84,13 +84,13 @@ "mtype": { "name": "OTHER", "synopsis": "Used for comparisons.", - "html_synopsis": "Used for comparisons." + "html_synopsis": "Used for comparisons." } }], "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -137,7 +137,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -164,13 +164,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -197,13 +197,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -230,13 +230,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -263,13 +263,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -296,13 +296,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -327,7 +327,7 @@ "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -354,13 +354,13 @@ "mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } }], "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -387,13 +387,13 @@ "mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } }], "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -420,13 +420,13 @@ "mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } }], "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -453,13 +453,13 @@ "mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } }], "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -486,13 +486,13 @@ "mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } }], "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -538,7 +538,7 @@ "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -562,7 +562,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -589,7 +589,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -616,7 +616,7 @@ "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -640,7 +640,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -667,7 +667,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -694,7 +694,7 @@ "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -718,7 +718,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -745,7 +745,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -770,12 +770,12 @@ "class_name": "MAttribute", "full_name": "test_prog::races::Race::_base_strength", "visibility": "private", - "html_synopsis": "Used to represents how strong the race is.", + "html_synopsis": "Used to represents how strong the race is.", "modifiers": ["private", "var"], "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -794,7 +794,7 @@ "class_name": "MMethod", "full_name": "test_prog::Race::base_strength", "visibility": "public", - "html_synopsis": "Used to represents how strong the race is.", + "html_synopsis": "Used to represents how strong the race is.", "modifiers": ["fun"], "msignature": { "arity": 0, @@ -802,7 +802,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -822,7 +822,7 @@ "class_name": "MMethod", "full_name": "test_prog::Race::base_strength=", "visibility": "protected", - "html_synopsis": "Used to represents how strong the race is.", + "html_synopsis": "Used to represents how strong the race is.", "modifiers": ["protected", "fun"], "msignature": { "arity": 1, @@ -832,7 +832,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -857,12 +857,12 @@ "class_name": "MAttribute", "full_name": "test_prog::races::Race::_base_endurance", "visibility": "private", - "html_synopsis": "Used to represents how the race can absorb damage.", + "html_synopsis": "Used to represents how the race can absorb damage.", "modifiers": ["private", "var"], "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -881,7 +881,7 @@ "class_name": "MMethod", "full_name": "test_prog::Race::base_endurance", "visibility": "public", - "html_synopsis": "Used to represents how the race can absorb damage.", + "html_synopsis": "Used to represents how the race can absorb damage.", "modifiers": ["fun"], "msignature": { "arity": 0, @@ -889,7 +889,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -909,7 +909,7 @@ "class_name": "MMethod", "full_name": "test_prog::Race::base_endurance=", "visibility": "protected", - "html_synopsis": "Used to represents how the race can absorb damage.", + "html_synopsis": "Used to represents how the race can absorb damage.", "modifiers": ["protected", "fun"], "msignature": { "arity": 1, @@ -919,7 +919,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -944,12 +944,12 @@ "class_name": "MAttribute", "full_name": "test_prog::races::Race::_base_intelligence", "visibility": "private", - "html_synopsis": "Is this race smart?", + "html_synopsis": "Is this race smart?", "modifiers": ["private", "var"], "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -968,7 +968,7 @@ "class_name": "MMethod", "full_name": "test_prog::Race::base_intelligence", "visibility": "public", - "html_synopsis": "Is this race smart?", + "html_synopsis": "Is this race smart?", "modifiers": ["fun"], "msignature": { "arity": 0, @@ -976,7 +976,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -996,7 +996,7 @@ "class_name": "MMethod", "full_name": "test_prog::Race::base_intelligence=", "visibility": "protected", - "html_synopsis": "Is this race smart?", + "html_synopsis": "Is this race smart?", "modifiers": ["protected", "fun"], "msignature": { "arity": 1, @@ -1006,7 +1006,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -1031,12 +1031,12 @@ "class_name": "MAttribute", "full_name": "test_prog::character::Character::_race", "visibility": "private", - "html_synopsis": "The Race of the character.", + "html_synopsis": "The Race of the character.", "modifiers": ["private", "var"], "static_mtype": { "name": "Race", "synopsis": "Race determines basic characteristics and what the character will be able to do in life.", - "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." + "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." } } { @@ -1055,7 +1055,7 @@ "class_name": "MMethod", "full_name": "test_prog::Character::race", "visibility": "public", - "html_synopsis": "The Race of the character.", + "html_synopsis": "The Race of the character.", "modifiers": ["fun"], "msignature": { "arity": 0, @@ -1063,7 +1063,7 @@ "return_mtype": { "name": "Race", "synopsis": "Race determines basic characteristics and what the character will be able to do in life.", - "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." + "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." } } } @@ -1083,7 +1083,7 @@ "class_name": "MMethod", "full_name": "test_prog::Character::race=", "visibility": "protected", - "html_synopsis": "The Race of the character.", + "html_synopsis": "The Race of the character.", "modifiers": ["protected", "fun"], "msignature": { "arity": 1, @@ -1093,7 +1093,7 @@ "mtype": { "name": "Race", "synopsis": "Race determines basic characteristics and what the character will be able to do in life.", - "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." + "html_synopsis": "Race determines basic characteristics and what the character will be able to do in life." } }], "return_mtype": null @@ -1118,12 +1118,12 @@ "class_name": "MAttribute", "full_name": "test_prog::character::Character::_career", "visibility": "private", - "html_synopsis": "The current Career of the character.", + "html_synopsis": "The current Career of the character.", "modifiers": ["private", "var"], "static_mtype": { "name": "nullable Career", "synopsis": "A `Career` gives a characteristic bonus or malus to the character.", - "html_synopsis": "A Career gives a characteristic bonus or malus to the character." + "html_synopsis": "A Career gives a characteristic bonus or malus to the character." } } { @@ -1142,7 +1142,7 @@ "class_name": "MMethod", "full_name": "test_prog::Character::career", "visibility": "public", - "html_synopsis": "The current Career of the character.", + "html_synopsis": "The current Career of the character.", "modifiers": ["fun"], "msignature": { "arity": 0, @@ -1150,7 +1150,7 @@ "return_mtype": { "name": "nullable Career", "synopsis": "A `Career` gives a characteristic bonus or malus to the character.", - "html_synopsis": "A Career gives a characteristic bonus or malus to the character." + "html_synopsis": "A Career gives a characteristic bonus or malus to the character." } } } @@ -1170,7 +1170,7 @@ "class_name": "MMethod", "full_name": "test_prog::Character::career=", "visibility": "public", - "html_synopsis": "The current Career of the character.", + "html_synopsis": "The current Career of the character.", "modifiers": ["fun"], "msignature": { "arity": 1, @@ -1180,7 +1180,7 @@ "mtype": { "name": "nullable Career", "synopsis": "A `Career` gives a characteristic bonus or malus to the character.", - "html_synopsis": "A Career gives a characteristic bonus or malus to the character." + "html_synopsis": "A Career gives a characteristic bonus or malus to the character." } }], "return_mtype": null @@ -1228,7 +1228,7 @@ "static_mtype": { "name": "String", "synopsis": "Strings (there is no chars...).", - "html_synopsis": "Strings (there is no chars...)." + "html_synopsis": "Strings (there is no chars...)." } } { @@ -1252,7 +1252,7 @@ "return_mtype": { "name": "String", "synopsis": "Strings (there is no chars...).", - "html_synopsis": "Strings (there is no chars...)." + "html_synopsis": "Strings (there is no chars...)." } } } @@ -1279,7 +1279,7 @@ "mtype": { "name": "String", "synopsis": "Strings (there is no chars...).", - "html_synopsis": "Strings (there is no chars...)." + "html_synopsis": "Strings (there is no chars...)." } }], "return_mtype": null @@ -1306,7 +1306,7 @@ "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -1330,7 +1330,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1357,7 +1357,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -1384,7 +1384,7 @@ "static_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } { @@ -1408,7 +1408,7 @@ "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -1435,7 +1435,7 @@ "mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } }], "return_mtype": null @@ -1457,7 +1457,7 @@ "class_name": "MMethod", "full_name": "test_prog::Character::total_strengh", "visibility": "public", - "html_synopsis": "The actual strength of the character.", + "html_synopsis": "The actual strength of the character.", "modifiers": ["fun"], "msignature": { "arity": 0, @@ -1465,7 +1465,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1485,7 +1485,7 @@ "class_name": "MMethod", "full_name": "test_prog::Character::total_endurance", "visibility": "public", - "html_synopsis": "The actual endurance of the character.", + "html_synopsis": "The actual endurance of the character.", "modifiers": ["fun"], "msignature": { "arity": 0, @@ -1493,7 +1493,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1513,7 +1513,7 @@ "class_name": "MMethod", "full_name": "test_prog::Character::total_intelligence", "visibility": "public", - "html_synopsis": "The acutal intelligence of the character.", + "html_synopsis": "The acutal intelligence of the character.", "modifiers": ["fun"], "msignature": { "arity": 0, @@ -1521,7 +1521,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1541,7 +1541,7 @@ "class_name": "MMethod", "full_name": "test_prog::Character::max_health", "visibility": "public", - "html_synopsis": "Maximum health of the character.", + "html_synopsis": "Maximum health of the character.", "modifiers": ["fun"], "msignature": { "arity": 0, @@ -1549,7 +1549,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1572,12 +1572,12 @@ "class_name": "MAttribute", "full_name": "test_prog::character::Character::_health", "visibility": "private", - "html_synopsis": "The current health of the character.", + "html_synopsis": "The current health of the character.", "modifiers": ["private", "var"], "static_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } { @@ -1596,7 +1596,7 @@ "class_name": "MMethod", "full_name": "test_prog::Character::health", "visibility": "public", - "html_synopsis": "The current health of the character.", + "html_synopsis": "The current health of the character.", "modifiers": ["fun"], "msignature": { "arity": 0, @@ -1604,7 +1604,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1624,7 +1624,7 @@ "class_name": "MMethod", "full_name": "test_prog::Character::health=", "visibility": "protected", - "html_synopsis": "The current health of the character.", + "html_synopsis": "The current health of the character.", "modifiers": ["protected", "fun"], "msignature": { "arity": 1, @@ -1634,7 +1634,7 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": null @@ -1656,7 +1656,7 @@ "class_name": "MMethod", "full_name": "test_prog::Weapon::dps", "visibility": "public", - "html_synopsis": "Damage per second inflicted by this weapon.", + "html_synopsis": "Damage per second inflicted by this weapon.", "modifiers": ["abstract", "fun"], "msignature": { "arity": 0, @@ -1664,7 +1664,7 @@ "return_mtype": { "name": "Float", "synopsis": "Some services about Floats.", - "html_synopsis": "Some services about Floats." + "html_synopsis": "Some services about Floats." } } } @@ -1689,7 +1689,7 @@ "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1709,7 +1709,7 @@ "class_name": "MMethod", "full_name": "test_prog::Combatable::attack", "visibility": "public", - "html_synopsis": "A Combatable can attack a target that is also a Combatable.", + "html_synopsis": "A Combatable can attack a target that is also a Combatable.", "modifiers": ["abstract", "fun"], "msignature": { "arity": 2, @@ -1719,7 +1719,7 @@ "mtype": { "name": "Combatable", "synopsis": "Something that can be combatted, it can `attack` and `defend`.", - "html_synopsis": "Something that can be combatted, it can attack and defend." + "html_synopsis": "Something that can be combatted, it can attack and defend." } }, { "is_vararg": false, @@ -1727,13 +1727,13 @@ "mtype": { "name": "Weapon", "synopsis": "Something that can be used to attack someone and inflict damage.", - "html_synopsis": "Something that can be used to attack someone and inflict damage." + "html_synopsis": "Something that can be used to attack someone and inflict damage." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1753,7 +1753,7 @@ "class_name": "MMethod", "full_name": "test_prog::Combatable::direct_attack", "visibility": "public", - "html_synopsis": "Like attack but cannot be defended.", + "html_synopsis": "Like attack but cannot be defended.", "modifiers": ["abstract", "fun"], "msignature": { "arity": 2, @@ -1763,7 +1763,7 @@ "mtype": { "name": "Combatable", "synopsis": "Something that can be combatted, it can `attack` and `defend`.", - "html_synopsis": "Something that can be combatted, it can attack and defend." + "html_synopsis": "Something that can be combatted, it can attack and defend." } }, { "is_vararg": false, @@ -1771,13 +1771,13 @@ "mtype": { "name": "Weapon", "synopsis": "Something that can be used to attack someone and inflict damage.", - "html_synopsis": "Something that can be used to attack someone and inflict damage." + "html_synopsis": "Something that can be used to attack someone and inflict damage." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1797,7 +1797,7 @@ "class_name": "MMethod", "full_name": "test_prog::Combatable::defend", "visibility": "public", - "html_synopsis": "Combatable can defend against attacks.", + "html_synopsis": "Combatable can defend against attacks.", "modifiers": ["abstract", "fun"], "msignature": { "arity": 1, @@ -1807,13 +1807,13 @@ "mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } }], "return_mtype": { "name": "Int", "synopsis": "Some services about Integers.", - "html_synopsis": "Some services about Integers." + "html_synopsis": "Some services about Integers." } } } @@ -1833,7 +1833,7 @@ "class_name": "MMethod", "full_name": "test_prog::Combatable::is_dead", "visibility": "public", - "html_synopsis": "Is the character still have hit_points?", + "html_synopsis": "Is the character still have hit_points?", "modifiers": ["fun"], "msignature": { "arity": 0, @@ -1841,7 +1841,7 @@ "return_mtype": { "name": "Bool", "synopsis": "Booleans, `true` or `false`.", - "html_synopsis": "Booleans, true or false." + "html_synopsis": "Booleans, true or false." } } } @@ -1861,7 +1861,7 @@ "class_name": "MMethod", "full_name": "test_prog::Game::player_characters", "visibility": "public", - "html_synopsis": "Characters played by human players.", + "html_synopsis": "Characters played by human players.", "modifiers": ["abstract", "fun"], "msignature": { "arity": 0, @@ -1869,7 +1869,7 @@ "return_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } } @@ -1889,7 +1889,7 @@ "class_name": "MMethod", "full_name": "test_prog::Game::computer_characters", "visibility": "public", - "html_synopsis": "Characters players by computer.", + "html_synopsis": "Characters players by computer.", "modifiers": ["abstract", "fun"], "msignature": { "arity": 0, @@ -1897,7 +1897,7 @@ "return_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } } @@ -1917,7 +1917,7 @@ "class_name": "MMethod", "full_name": "test_prog::Game::start_game", "visibility": "public", - "html_synopsis": "Start the game.", + "html_synopsis": "Start the game.", "modifiers": ["abstract", "fun"], "msignature": { "arity": 0, @@ -1941,7 +1941,7 @@ "class_name": "MMethod", "full_name": "test_prog::Game::pause_game", "visibility": "public", - "html_synopsis": "Pause the game.", + "html_synopsis": "Pause the game.", "modifiers": ["abstract", "fun"], "msignature": { "arity": 0, @@ -1965,7 +1965,7 @@ "class_name": "MMethod", "full_name": "test_prog::Game::stop_game", "visibility": "public", - "html_synopsis": "Stop the game.", + "html_synopsis": "Stop the game.", "modifiers": ["abstract", "fun"], "msignature": { "arity": 0, @@ -1993,7 +1993,7 @@ "static_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } { @@ -2019,7 +2019,7 @@ "mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } }], "return_mtype": null @@ -2045,7 +2045,7 @@ "static_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } { @@ -2071,7 +2071,7 @@ "mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } }], "return_mtype": null @@ -2116,7 +2116,7 @@ "static_mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } } { @@ -2141,7 +2141,7 @@ "mtype": { "name": "List[Character]", "synopsis": "List of things.", - "html_synopsis": "List of things." + "html_synopsis": "List of things." } }], "return_mtype": null diff --git a/tests/sav/nitcatalog_args1.res b/tests/sav/nitcatalog_args1.res index 7ab7a71..040f43c 100644 --- a/tests/sav/nitcatalog_args1.res +++ b/tests/sav/nitcatalog_args1.res @@ -30,7 +30,7 @@

test_prog - 

-

Test program for model tools.

This program creates a fake model that can be used to test tools like:

+

Test program for model tools.

This program creates a fake model that can be used to test tools like:

  • nitdoc
  • nitmetrics
  • @@ -40,28 +40,28 @@

    An image:

    Tinks3D

Content

    -
  • test_prog: Test program for model tools. (test_prog)
      +
    • test_prog: Test program for model tools. (test_prog)
      • examples (test_prog/examples)
        • game_examples (test_prog/examples/game_examples.nit)
      • -
      • game: Gaming group (test_prog/game)
          -
        • game: A game abstraction for RPG. (test_prog/game/game.nit)
        • +
        • game: Gaming group (test_prog/game)
            +
          • game: A game abstraction for RPG. (test_prog/game/game.nit)
        • -
        • platform: Fictive Crappy Platform. (test_prog/platform)
            -
          • platform: Declares base types allowed on the platform. (test_prog/platform/platform.nit)
          • +
          • platform: Fictive Crappy Platform. (test_prog/platform)
              +
            • platform: Declares base types allowed on the platform. (test_prog/platform/platform.nit)
          • -
          • rpg: Role Playing Game group (test_prog/rpg)
              -
            • careers: Careers of the game. (test_prog/rpg/careers.nit)
            • -
            • character: Characters are playable entity in the world. (test_prog/rpg/character.nit)
            • -
            • combat: COmbat interactions between characters. (test_prog/rpg/combat.nit)
            • -
            • races: Races of the game. (test_prog/rpg/races.nit)
            • -
            • rpg: A worlg RPG abstraction. (test_prog/rpg/rpg.nit)
            • +
            • rpg: Role Playing Game group (test_prog/rpg)
                +
              • careers: Careers of the game. (test_prog/rpg/careers.nit)
              • +
              • character: Characters are playable entity in the world. (test_prog/rpg/character.nit)
              • +
              • combat: COmbat interactions between characters. (test_prog/rpg/combat.nit)
              • +
              • races: Races of the game. (test_prog/rpg/races.nit)
              • +
              • rpg: A worlg RPG abstraction. (test_prog/rpg/rpg.nit)
            • -
            • test_prog: A test program with a fake model to check model tools. (test_prog/test_prog.nit)
            • +
            • test_prog: A test program with a fake model to check model tools. (test_prog/test_prog.nit)
            • tests (test_prog/tests)
              • test_game (test_prog/tests/test_game.nit)
              -- 1.7.9.5