cobol-py 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1057) hide show
  1. cobol_py-0.1.0/.gitignore +223 -0
  2. cobol_py-0.1.0/Cobol.g4 +3269 -0
  3. cobol_py-0.1.0/CobolPreprocessor.g4 +671 -0
  4. cobol_py-0.1.0/LICENSE +21 -0
  5. cobol_py-0.1.0/PKG-INFO +269 -0
  6. cobol_py-0.1.0/README.md +242 -0
  7. cobol_py-0.1.0/examples/example.cbl +19 -0
  8. cobol_py-0.1.0/pyproject.toml +67 -0
  9. cobol_py-0.1.0/scripts/dump_parse_trees.py +53 -0
  10. cobol_py-0.1.0/scripts/generate_parser.py +123 -0
  11. cobol_py-0.1.0/src/cobol_py/CobolLexer.py +3337 -0
  12. cobol_py-0.1.0/src/cobol_py/CobolListener.py +5403 -0
  13. cobol_py-0.1.0/src/cobol_py/CobolParser.py +54518 -0
  14. cobol_py-0.1.0/src/cobol_py/CobolPreprocessorLexer.py +1428 -0
  15. cobol_py-0.1.0/src/cobol_py/CobolPreprocessorListener.py +282 -0
  16. cobol_py-0.1.0/src/cobol_py/CobolPreprocessorParser.py +6682 -0
  17. cobol_py-0.1.0/src/cobol_py/CobolPreprocessorVisitor.py +163 -0
  18. cobol_py-0.1.0/src/cobol_py/CobolVisitor.py +3008 -0
  19. cobol_py-0.1.0/src/cobol_py/__init__.py +59 -0
  20. cobol_py-0.1.0/src/cobol_py/_antlr_patch.py +82 -0
  21. cobol_py-0.1.0/src/cobol_py/_treeutil.py +99 -0
  22. cobol_py-0.1.0/src/cobol_py/asg/__init__.py +579 -0
  23. cobol_py-0.1.0/src/cobol_py/asg/antlr_utils.py +91 -0
  24. cobol_py-0.1.0/src/cobol_py/asg/base.py +117 -0
  25. cobol_py-0.1.0/src/cobol_py/asg/call.py +227 -0
  26. cobol_py-0.1.0/src/cobol_py/asg/communication.py +542 -0
  27. cobol_py-0.1.0/src/cobol_py/asg/data.py +1661 -0
  28. cobol_py-0.1.0/src/cobol_py/asg/environment.py +1113 -0
  29. cobol_py-0.1.0/src/cobol_py/asg/factory.py +705 -0
  30. cobol_py-0.1.0/src/cobol_py/asg/identification.py +200 -0
  31. cobol_py-0.1.0/src/cobol_py/asg/literal.py +95 -0
  32. cobol_py-0.1.0/src/cobol_py/asg/mainframe.py +1538 -0
  33. cobol_py-0.1.0/src/cobol_py/asg/procedure/__init__.py +2 -0
  34. cobol_py-0.1.0/src/cobol_py/asg/procedure/division.py +512 -0
  35. cobol_py-0.1.0/src/cobol_py/asg/procedure/statements.py +2297 -0
  36. cobol_py-0.1.0/src/cobol_py/asg/program.py +149 -0
  37. cobol_py-0.1.0/src/cobol_py/asg/registry.py +48 -0
  38. cobol_py-0.1.0/src/cobol_py/asg/resolver.py +46 -0
  39. cobol_py-0.1.0/src/cobol_py/asg/util_string.py +17 -0
  40. cobol_py-0.1.0/src/cobol_py/asg/valuestmt.py +720 -0
  41. cobol_py-0.1.0/src/cobol_py/asg/visitor.py +582 -0
  42. cobol_py-0.1.0/src/cobol_py/error_listener.py +27 -0
  43. cobol_py-0.1.0/src/cobol_py/exceptions.py +23 -0
  44. cobol_py-0.1.0/src/cobol_py/params.py +45 -0
  45. cobol_py-0.1.0/src/cobol_py/preprocessor/__init__.py +7 -0
  46. cobol_py-0.1.0/src/cobol_py/preprocessor/comment_entries_marker.py +140 -0
  47. cobol_py-0.1.0/src/cobol_py/preprocessor/constants.py +67 -0
  48. cobol_py-0.1.0/src/cobol_py/preprocessor/copybook.py +222 -0
  49. cobol_py-0.1.0/src/cobol_py/preprocessor/document_context.py +47 -0
  50. cobol_py-0.1.0/src/cobol_py/preprocessor/document_parser.py +83 -0
  51. cobol_py-0.1.0/src/cobol_py/preprocessor/document_parser_listener.py +267 -0
  52. cobol_py-0.1.0/src/cobol_py/preprocessor/hidden_token_collector.py +34 -0
  53. cobol_py-0.1.0/src/cobol_py/preprocessor/inline_comment_entries_normalizer.py +29 -0
  54. cobol_py-0.1.0/src/cobol_py/preprocessor/line.py +276 -0
  55. cobol_py-0.1.0/src/cobol_py/preprocessor/line_indicator_processor.py +168 -0
  56. cobol_py-0.1.0/src/cobol_py/preprocessor/line_reader.py +128 -0
  57. cobol_py-0.1.0/src/cobol_py/preprocessor/line_writer.py +27 -0
  58. cobol_py-0.1.0/src/cobol_py/preprocessor/preprocessor.py +100 -0
  59. cobol_py-0.1.0/src/cobol_py/preprocessor/replacement_mapping.py +101 -0
  60. cobol_py-0.1.0/src/cobol_py/preprocessor/string_utils.py +15 -0
  61. cobol_py-0.1.0/src/cobol_py/preprocessor/token_utils.py +46 -0
  62. cobol_py-0.1.0/src/cobol_py/runner.py +237 -0
  63. cobol_py-0.1.0/src/cobol_py/util/__init__.py +26 -0
  64. cobol_py-0.1.0/src/cobol_py/util/filename_utils.py +52 -0
  65. cobol_py-0.1.0/src/cobol_py/util/string_utils.py +47 -0
  66. cobol_py-0.1.0/tests/conftest.py +26 -0
  67. cobol_py-0.1.0/tests/fixtures/MYCOPY.CPY +1 -0
  68. cobol_py-0.1.0/tests/fixtures/copy_main.cbl +11 -0
  69. cobol_py-0.1.0/tests/fixtures/exec_cics.cbl +12 -0
  70. cobol_py-0.1.0/tests/fixtures/exec_sql.cbl +12 -0
  71. cobol_py-0.1.0/tests/fixtures/hello.cbl +7 -0
  72. cobol_py-0.1.0/tests/fixtures/replace.cbl +11 -0
  73. cobol_py-0.1.0/tests/fixtures/tandem.cbl +6 -0
  74. cobol_py-0.1.0/tests/fixtures/variable.cbl +6 -0
  75. cobol_py-0.1.0/tests/test_asg/__init__.py +0 -0
  76. cobol_py-0.1.0/tests/test_asg/conftest.py +18 -0
  77. cobol_py-0.1.0/tests/test_asg/test_arithmetic.py +369 -0
  78. cobol_py-0.1.0/tests/test_asg/test_c2_tail.py +187 -0
  79. cobol_py-0.1.0/tests/test_asg/test_data.py +646 -0
  80. cobol_py-0.1.0/tests/test_asg/test_declaratives.py +143 -0
  81. cobol_py-0.1.0/tests/test_asg/test_environment.py +250 -0
  82. cobol_py-0.1.0/tests/test_asg/test_file_verbs.py +76 -0
  83. cobol_py-0.1.0/tests/test_asg/test_foundation.py +57 -0
  84. cobol_py-0.1.0/tests/test_asg/test_more_verbs.py +250 -0
  85. cobol_py-0.1.0/tests/test_asg/test_phrase_scopes.py +293 -0
  86. cobol_py-0.1.0/tests/test_asg/test_procedure.py +208 -0
  87. cobol_py-0.1.0/tests/test_asg/test_read_call_correctness.py +138 -0
  88. cobol_py-0.1.0/tests/test_asg/test_statements.py +167 -0
  89. cobol_py-0.1.0/tests/test_asg/test_string_table_verbs.py +57 -0
  90. cobol_py-0.1.0/tests/test_asg/test_write_rewrite_start.py +94 -0
  91. cobol_py-0.1.0/tests/test_ast_tree.py +60 -0
  92. cobol_py-0.1.0/tests/test_nist.py +62 -0
  93. cobol_py-0.1.0/tests/test_parse.py +188 -0
  94. cobol_py-0.1.0/tests/test_phase1_leaf.py +278 -0
  95. cobol_py-0.1.0/tests/test_phase2_line.py +275 -0
  96. cobol_py-0.1.0/tests/test_preprocessor.py +90 -0
  97. cobol_py-0.1.0/tests/testdata/gov/nist/ALTL1.CPY +7 -0
  98. cobol_py-0.1.0/tests/testdata/gov/nist/ALTLB.CPY +7 -0
  99. cobol_py-0.1.0/tests/testdata/gov/nist/CM101M.CBL +671 -0
  100. cobol_py-0.1.0/tests/testdata/gov/nist/CM102M.CBL +967 -0
  101. cobol_py-0.1.0/tests/testdata/gov/nist/CM103M.CBL +281 -0
  102. cobol_py-0.1.0/tests/testdata/gov/nist/CM104M.CBL +337 -0
  103. cobol_py-0.1.0/tests/testdata/gov/nist/CM105M.CBL +493 -0
  104. cobol_py-0.1.0/tests/testdata/gov/nist/CM201M.CBL +87 -0
  105. cobol_py-0.1.0/tests/testdata/gov/nist/CM202M.CBL +644 -0
  106. cobol_py-0.1.0/tests/testdata/gov/nist/CM303M.CBL +37 -0
  107. cobol_py-0.1.0/tests/testdata/gov/nist/CM401M.CBL +67 -0
  108. cobol_py-0.1.0/tests/testdata/gov/nist/DB101A.CBL +826 -0
  109. cobol_py-0.1.0/tests/testdata/gov/nist/DB102A.CBL +686 -0
  110. cobol_py-0.1.0/tests/testdata/gov/nist/DB103M.CBL +684 -0
  111. cobol_py-0.1.0/tests/testdata/gov/nist/DB104A.CBL +750 -0
  112. cobol_py-0.1.0/tests/testdata/gov/nist/DB105A.CBL +1454 -0
  113. cobol_py-0.1.0/tests/testdata/gov/nist/DB201A.CBL +1517 -0
  114. cobol_py-0.1.0/tests/testdata/gov/nist/DB202A.CBL +846 -0
  115. cobol_py-0.1.0/tests/testdata/gov/nist/DB203A.CBL +820 -0
  116. cobol_py-0.1.0/tests/testdata/gov/nist/DB204A.CBL +556 -0
  117. cobol_py-0.1.0/tests/testdata/gov/nist/DB205A.CBL +598 -0
  118. cobol_py-0.1.0/tests/testdata/gov/nist/DB301M.CBL +47 -0
  119. cobol_py-0.1.0/tests/testdata/gov/nist/DB302M.CBL +46 -0
  120. cobol_py-0.1.0/tests/testdata/gov/nist/DB303M.CBL +54 -0
  121. cobol_py-0.1.0/tests/testdata/gov/nist/DB304M.CBL +43 -0
  122. cobol_py-0.1.0/tests/testdata/gov/nist/DB305M.CBL +46 -0
  123. cobol_py-0.1.0/tests/testdata/gov/nist/EXEC85.CBL +2261 -0
  124. cobol_py-0.1.0/tests/testdata/gov/nist/IC101A.CBL +384 -0
  125. cobol_py-0.1.0/tests/testdata/gov/nist/IC102A.CBL +50 -0
  126. cobol_py-0.1.0/tests/testdata/gov/nist/IC103A.CBL +499 -0
  127. cobol_py-0.1.0/tests/testdata/gov/nist/IC104A.CBL +73 -0
  128. cobol_py-0.1.0/tests/testdata/gov/nist/IC105A.CBL +66 -0
  129. cobol_py-0.1.0/tests/testdata/gov/nist/IC106A.CBL +532 -0
  130. cobol_py-0.1.0/tests/testdata/gov/nist/IC107A.CBL +111 -0
  131. cobol_py-0.1.0/tests/testdata/gov/nist/IC108A.CBL +446 -0
  132. cobol_py-0.1.0/tests/testdata/gov/nist/IC109A.CBL +67 -0
  133. cobol_py-0.1.0/tests/testdata/gov/nist/IC110A.CBL +71 -0
  134. cobol_py-0.1.0/tests/testdata/gov/nist/IC111A.CBL +58 -0
  135. cobol_py-0.1.0/tests/testdata/gov/nist/IC112A.CBL +557 -0
  136. cobol_py-0.1.0/tests/testdata/gov/nist/IC113A.CBL +80 -0
  137. cobol_py-0.1.0/tests/testdata/gov/nist/IC114A.CBL +473 -0
  138. cobol_py-0.1.0/tests/testdata/gov/nist/IC115A.CBL +215 -0
  139. cobol_py-0.1.0/tests/testdata/gov/nist/IC116M.CBL +345 -0
  140. cobol_py-0.1.0/tests/testdata/gov/nist/IC117M.CBL +73 -0
  141. cobol_py-0.1.0/tests/testdata/gov/nist/IC118M.CBL +57 -0
  142. cobol_py-0.1.0/tests/testdata/gov/nist/IC201A.CBL +621 -0
  143. cobol_py-0.1.0/tests/testdata/gov/nist/IC202A.CBL +60 -0
  144. cobol_py-0.1.0/tests/testdata/gov/nist/IC203A.CBL +685 -0
  145. cobol_py-0.1.0/tests/testdata/gov/nist/IC204A.CBL +75 -0
  146. cobol_py-0.1.0/tests/testdata/gov/nist/IC205A.CBL +72 -0
  147. cobol_py-0.1.0/tests/testdata/gov/nist/IC206A.CBL +58 -0
  148. cobol_py-0.1.0/tests/testdata/gov/nist/IC207A.CBL +481 -0
  149. cobol_py-0.1.0/tests/testdata/gov/nist/IC208A.CBL +105 -0
  150. cobol_py-0.1.0/tests/testdata/gov/nist/IC209A.CBL +354 -0
  151. cobol_py-0.1.0/tests/testdata/gov/nist/IC210A.CBL +52 -0
  152. cobol_py-0.1.0/tests/testdata/gov/nist/IC211A.CBL +42 -0
  153. cobol_py-0.1.0/tests/testdata/gov/nist/IC212A.CBL +42 -0
  154. cobol_py-0.1.0/tests/testdata/gov/nist/IC213A.CBL +343 -0
  155. cobol_py-0.1.0/tests/testdata/gov/nist/IC214A.CBL +38 -0
  156. cobol_py-0.1.0/tests/testdata/gov/nist/IC215A.CBL +42 -0
  157. cobol_py-0.1.0/tests/testdata/gov/nist/IC216A.CBL +335 -0
  158. cobol_py-0.1.0/tests/testdata/gov/nist/IC217A.CBL +50 -0
  159. cobol_py-0.1.0/tests/testdata/gov/nist/IC222A.CBL +1164 -0
  160. cobol_py-0.1.0/tests/testdata/gov/nist/IC223A.CBL +773 -0
  161. cobol_py-0.1.0/tests/testdata/gov/nist/IC224A.CBL +705 -0
  162. cobol_py-0.1.0/tests/testdata/gov/nist/IC225A.CBL +1056 -0
  163. cobol_py-0.1.0/tests/testdata/gov/nist/IC226A.CBL +508 -0
  164. cobol_py-0.1.0/tests/testdata/gov/nist/IC227A.CBL +1202 -0
  165. cobol_py-0.1.0/tests/testdata/gov/nist/IC228A.CBL +447 -0
  166. cobol_py-0.1.0/tests/testdata/gov/nist/IC233A.CBL +515 -0
  167. cobol_py-0.1.0/tests/testdata/gov/nist/IC234A.CBL +739 -0
  168. cobol_py-0.1.0/tests/testdata/gov/nist/IC235A.CBL +670 -0
  169. cobol_py-0.1.0/tests/testdata/gov/nist/IC237A.CBL +435 -0
  170. cobol_py-0.1.0/tests/testdata/gov/nist/IC401M.CBL +76 -0
  171. cobol_py-0.1.0/tests/testdata/gov/nist/IF101A.CBL +908 -0
  172. cobol_py-0.1.0/tests/testdata/gov/nist/IF102A.CBL +619 -0
  173. cobol_py-0.1.0/tests/testdata/gov/nist/IF103A.CBL +842 -0
  174. cobol_py-0.1.0/tests/testdata/gov/nist/IF104A.CBL +929 -0
  175. cobol_py-0.1.0/tests/testdata/gov/nist/IF105A.CBL +489 -0
  176. cobol_py-0.1.0/tests/testdata/gov/nist/IF106A.CBL +1007 -0
  177. cobol_py-0.1.0/tests/testdata/gov/nist/IF107A.CBL +381 -0
  178. cobol_py-0.1.0/tests/testdata/gov/nist/IF108A.CBL +491 -0
  179. cobol_py-0.1.0/tests/testdata/gov/nist/IF109A.CBL +453 -0
  180. cobol_py-0.1.0/tests/testdata/gov/nist/IF110A.CBL +502 -0
  181. cobol_py-0.1.0/tests/testdata/gov/nist/IF111A.CBL +733 -0
  182. cobol_py-0.1.0/tests/testdata/gov/nist/IF112A.CBL +454 -0
  183. cobol_py-0.1.0/tests/testdata/gov/nist/IF113A.CBL +453 -0
  184. cobol_py-0.1.0/tests/testdata/gov/nist/IF114A.CBL +734 -0
  185. cobol_py-0.1.0/tests/testdata/gov/nist/IF115A.CBL +452 -0
  186. cobol_py-0.1.0/tests/testdata/gov/nist/IF116A.CBL +891 -0
  187. cobol_py-0.1.0/tests/testdata/gov/nist/IF117A.CBL +1039 -0
  188. cobol_py-0.1.0/tests/testdata/gov/nist/IF118A.CBL +546 -0
  189. cobol_py-0.1.0/tests/testdata/gov/nist/IF119A.CBL +799 -0
  190. cobol_py-0.1.0/tests/testdata/gov/nist/IF120A.CBL +686 -0
  191. cobol_py-0.1.0/tests/testdata/gov/nist/IF121A.CBL +682 -0
  192. cobol_py-0.1.0/tests/testdata/gov/nist/IF122A.CBL +682 -0
  193. cobol_py-0.1.0/tests/testdata/gov/nist/IF123A.CBL +799 -0
  194. cobol_py-0.1.0/tests/testdata/gov/nist/IF124A.CBL +763 -0
  195. cobol_py-0.1.0/tests/testdata/gov/nist/IF125A.CBL +688 -0
  196. cobol_py-0.1.0/tests/testdata/gov/nist/IF126A.CBL +888 -0
  197. cobol_py-0.1.0/tests/testdata/gov/nist/IF127A.CBL +507 -0
  198. cobol_py-0.1.0/tests/testdata/gov/nist/IF128A.CBL +649 -0
  199. cobol_py-0.1.0/tests/testdata/gov/nist/IF129A.CBL +634 -0
  200. cobol_py-0.1.0/tests/testdata/gov/nist/IF130A.CBL +820 -0
  201. cobol_py-0.1.0/tests/testdata/gov/nist/IF131A.CBL +514 -0
  202. cobol_py-0.1.0/tests/testdata/gov/nist/IF132A.CBL +635 -0
  203. cobol_py-0.1.0/tests/testdata/gov/nist/IF133A.CBL +680 -0
  204. cobol_py-0.1.0/tests/testdata/gov/nist/IF134A.CBL +548 -0
  205. cobol_py-0.1.0/tests/testdata/gov/nist/IF135A.CBL +1038 -0
  206. cobol_py-0.1.0/tests/testdata/gov/nist/IF136A.CBL +906 -0
  207. cobol_py-0.1.0/tests/testdata/gov/nist/IF137A.CBL +727 -0
  208. cobol_py-0.1.0/tests/testdata/gov/nist/IF138A.CBL +661 -0
  209. cobol_py-0.1.0/tests/testdata/gov/nist/IF139A.CBL +994 -0
  210. cobol_py-0.1.0/tests/testdata/gov/nist/IF140A.CBL +545 -0
  211. cobol_py-0.1.0/tests/testdata/gov/nist/IF141A.CBL +694 -0
  212. cobol_py-0.1.0/tests/testdata/gov/nist/IF142A.CBL +369 -0
  213. cobol_py-0.1.0/tests/testdata/gov/nist/IF401M.CBL +106 -0
  214. cobol_py-0.1.0/tests/testdata/gov/nist/IF402M.CBL +126 -0
  215. cobol_py-0.1.0/tests/testdata/gov/nist/IF403M.CBL +99 -0
  216. cobol_py-0.1.0/tests/testdata/gov/nist/IX101A.CBL +509 -0
  217. cobol_py-0.1.0/tests/testdata/gov/nist/IX102A.CBL +703 -0
  218. cobol_py-0.1.0/tests/testdata/gov/nist/IX103A.CBL +759 -0
  219. cobol_py-0.1.0/tests/testdata/gov/nist/IX104A.CBL +731 -0
  220. cobol_py-0.1.0/tests/testdata/gov/nist/IX105A.CBL +877 -0
  221. cobol_py-0.1.0/tests/testdata/gov/nist/IX106A.CBL +1235 -0
  222. cobol_py-0.1.0/tests/testdata/gov/nist/IX107A.CBL +984 -0
  223. cobol_py-0.1.0/tests/testdata/gov/nist/IX108A.CBL +1460 -0
  224. cobol_py-0.1.0/tests/testdata/gov/nist/IX109A.CBL +1073 -0
  225. cobol_py-0.1.0/tests/testdata/gov/nist/IX110A.CBL +622 -0
  226. cobol_py-0.1.0/tests/testdata/gov/nist/IX111A.CBL +446 -0
  227. cobol_py-0.1.0/tests/testdata/gov/nist/IX112A.CBL +878 -0
  228. cobol_py-0.1.0/tests/testdata/gov/nist/IX113A.CBL +771 -0
  229. cobol_py-0.1.0/tests/testdata/gov/nist/IX114A.CBL +722 -0
  230. cobol_py-0.1.0/tests/testdata/gov/nist/IX115A.CBL +723 -0
  231. cobol_py-0.1.0/tests/testdata/gov/nist/IX116A.CBL +723 -0
  232. cobol_py-0.1.0/tests/testdata/gov/nist/IX117A.CBL +722 -0
  233. cobol_py-0.1.0/tests/testdata/gov/nist/IX118A.CBL +724 -0
  234. cobol_py-0.1.0/tests/testdata/gov/nist/IX119A.CBL +733 -0
  235. cobol_py-0.1.0/tests/testdata/gov/nist/IX120A.CBL +707 -0
  236. cobol_py-0.1.0/tests/testdata/gov/nist/IX121A.CBL +764 -0
  237. cobol_py-0.1.0/tests/testdata/gov/nist/IX201A.CBL +508 -0
  238. cobol_py-0.1.0/tests/testdata/gov/nist/IX202A.CBL +666 -0
  239. cobol_py-0.1.0/tests/testdata/gov/nist/IX203A.CBL +737 -0
  240. cobol_py-0.1.0/tests/testdata/gov/nist/IX204A.CBL +741 -0
  241. cobol_py-0.1.0/tests/testdata/gov/nist/IX205A.CBL +975 -0
  242. cobol_py-0.1.0/tests/testdata/gov/nist/IX206A.CBL +894 -0
  243. cobol_py-0.1.0/tests/testdata/gov/nist/IX207A.CBL +1083 -0
  244. cobol_py-0.1.0/tests/testdata/gov/nist/IX208A.CBL +1527 -0
  245. cobol_py-0.1.0/tests/testdata/gov/nist/IX209A.CBL +2861 -0
  246. cobol_py-0.1.0/tests/testdata/gov/nist/IX210A.CBL +2335 -0
  247. cobol_py-0.1.0/tests/testdata/gov/nist/IX211A.CBL +1127 -0
  248. cobol_py-0.1.0/tests/testdata/gov/nist/IX212A.CBL +1055 -0
  249. cobol_py-0.1.0/tests/testdata/gov/nist/IX213A.CBL +1021 -0
  250. cobol_py-0.1.0/tests/testdata/gov/nist/IX214A.CBL +2360 -0
  251. cobol_py-0.1.0/tests/testdata/gov/nist/IX215A.CBL +2807 -0
  252. cobol_py-0.1.0/tests/testdata/gov/nist/IX216A.CBL +794 -0
  253. cobol_py-0.1.0/tests/testdata/gov/nist/IX217A.CBL +689 -0
  254. cobol_py-0.1.0/tests/testdata/gov/nist/IX218A.CBL +615 -0
  255. cobol_py-0.1.0/tests/testdata/gov/nist/IX301M.CBL +72 -0
  256. cobol_py-0.1.0/tests/testdata/gov/nist/IX302M.CBL +73 -0
  257. cobol_py-0.1.0/tests/testdata/gov/nist/IX401M.CBL +86 -0
  258. cobol_py-0.1.0/tests/testdata/gov/nist/K101A.CPY +5 -0
  259. cobol_py-0.1.0/tests/testdata/gov/nist/K1DAA.CPY +7 -0
  260. cobol_py-0.1.0/tests/testdata/gov/nist/K1FDA.CPY +9 -0
  261. cobol_py-0.1.0/tests/testdata/gov/nist/K1P01.CPY +3 -0
  262. cobol_py-0.1.0/tests/testdata/gov/nist/K1PRA.CPY +3 -0
  263. cobol_py-0.1.0/tests/testdata/gov/nist/K1PRB.CPY +5 -0
  264. cobol_py-0.1.0/tests/testdata/gov/nist/K1PRC.CPY +3 -0
  265. cobol_py-0.1.0/tests/testdata/gov/nist/K1SEA.CPY +10 -0
  266. cobol_py-0.1.0/tests/testdata/gov/nist/K1W01.CPY +4 -0
  267. cobol_py-0.1.0/tests/testdata/gov/nist/K1W02.CPY +4 -0
  268. cobol_py-0.1.0/tests/testdata/gov/nist/K1W03.CPY +3 -0
  269. cobol_py-0.1.0/tests/testdata/gov/nist/K1W04.CPY +7 -0
  270. cobol_py-0.1.0/tests/testdata/gov/nist/K1WKA.CPY +4 -0
  271. cobol_py-0.1.0/tests/testdata/gov/nist/K1WKB.CPY +5 -0
  272. cobol_py-0.1.0/tests/testdata/gov/nist/K1WKC.CPY +4 -0
  273. cobol_py-0.1.0/tests/testdata/gov/nist/K1WKY.CPY +4 -0
  274. cobol_py-0.1.0/tests/testdata/gov/nist/K1WKZ.CPY +5 -0
  275. cobol_py-0.1.0/tests/testdata/gov/nist/K2PRA.CPY +9 -0
  276. cobol_py-0.1.0/tests/testdata/gov/nist/K2SEA.CPY +12 -0
  277. cobol_py-0.1.0/tests/testdata/gov/nist/K3FCA.CPY +8 -0
  278. cobol_py-0.1.0/tests/testdata/gov/nist/K3FCB.CPY +6 -0
  279. cobol_py-0.1.0/tests/testdata/gov/nist/K3IOA.CPY +4 -0
  280. cobol_py-0.1.0/tests/testdata/gov/nist/K3IOB.CPY +3 -0
  281. cobol_py-0.1.0/tests/testdata/gov/nist/K3LGE.CPY +8 -0
  282. cobol_py-0.1.0/tests/testdata/gov/nist/K3OCA.CPY +3 -0
  283. cobol_py-0.1.0/tests/testdata/gov/nist/K3SCA.CPY +3 -0
  284. cobol_py-0.1.0/tests/testdata/gov/nist/K3SML.CPY +3 -0
  285. cobol_py-0.1.0/tests/testdata/gov/nist/K3SNA.CPY +3 -0
  286. cobol_py-0.1.0/tests/testdata/gov/nist/K3SNB.CPY +6 -0
  287. cobol_py-0.1.0/tests/testdata/gov/nist/K4NTA.CPY +5 -0
  288. cobol_py-0.1.0/tests/testdata/gov/nist/K501A.CPY +10 -0
  289. cobol_py-0.1.0/tests/testdata/gov/nist/K501B.CPY +10 -0
  290. cobol_py-0.1.0/tests/testdata/gov/nist/K5SDA.CPY +3 -0
  291. cobol_py-0.1.0/tests/testdata/gov/nist/K5SDB.CPY +3 -0
  292. cobol_py-0.1.0/tests/testdata/gov/nist/K6SCA.CPY +292 -0
  293. cobol_py-0.1.0/tests/testdata/gov/nist/K7SEA.CPY +1601 -0
  294. cobol_py-0.1.0/tests/testdata/gov/nist/KK208A.CPY +3 -0
  295. cobol_py-0.1.0/tests/testdata/gov/nist/KP001.CPY +12 -0
  296. cobol_py-0.1.0/tests/testdata/gov/nist/KP002.CPY +11 -0
  297. cobol_py-0.1.0/tests/testdata/gov/nist/KP003.CPY +7 -0
  298. cobol_py-0.1.0/tests/testdata/gov/nist/KP004.CPY +17 -0
  299. cobol_py-0.1.0/tests/testdata/gov/nist/KP005.CPY +3 -0
  300. cobol_py-0.1.0/tests/testdata/gov/nist/KP006.CPY +4 -0
  301. cobol_py-0.1.0/tests/testdata/gov/nist/KP007.CPY +5 -0
  302. cobol_py-0.1.0/tests/testdata/gov/nist/KP008.CPY +5 -0
  303. cobol_py-0.1.0/tests/testdata/gov/nist/KP009.CPY +3 -0
  304. cobol_py-0.1.0/tests/testdata/gov/nist/KP010.CPY +8 -0
  305. cobol_py-0.1.0/tests/testdata/gov/nist/KSM31.CPY +3 -0
  306. cobol_py-0.1.0/tests/testdata/gov/nist/KSM41.CPY +3 -0
  307. cobol_py-0.1.0/tests/testdata/gov/nist/NC101A.CBL +1869 -0
  308. cobol_py-0.1.0/tests/testdata/gov/nist/NC102A.CBL +1505 -0
  309. cobol_py-0.1.0/tests/testdata/gov/nist/NC103A.CBL +2141 -0
  310. cobol_py-0.1.0/tests/testdata/gov/nist/NC104A.CBL +2853 -0
  311. cobol_py-0.1.0/tests/testdata/gov/nist/NC105A.CBL +3119 -0
  312. cobol_py-0.1.0/tests/testdata/gov/nist/NC106A.CBL +2535 -0
  313. cobol_py-0.1.0/tests/testdata/gov/nist/NC107A.CBL +2035 -0
  314. cobol_py-0.1.0/tests/testdata/gov/nist/NC108M.CBL +779 -0
  315. cobol_py-0.1.0/tests/testdata/gov/nist/NC109M.CBL +966 -0
  316. cobol_py-0.1.0/tests/testdata/gov/nist/NC109M.DAT +13 -0
  317. cobol_py-0.1.0/tests/testdata/gov/nist/NC110M.CBL +91 -0
  318. cobol_py-0.1.0/tests/testdata/gov/nist/NC111A.CBL +480 -0
  319. cobol_py-0.1.0/tests/testdata/gov/nist/NC112A.CBL +1029 -0
  320. cobol_py-0.1.0/tests/testdata/gov/nist/NC113M.CBL +264 -0
  321. cobol_py-0.1.0/tests/testdata/gov/nist/NC114M.CBL +502 -0
  322. cobol_py-0.1.0/tests/testdata/gov/nist/NC115A.CBL +1106 -0
  323. cobol_py-0.1.0/tests/testdata/gov/nist/NC116A.CBL +1495 -0
  324. cobol_py-0.1.0/tests/testdata/gov/nist/NC117A.CBL +1210 -0
  325. cobol_py-0.1.0/tests/testdata/gov/nist/NC118A.CBL +1039 -0
  326. cobol_py-0.1.0/tests/testdata/gov/nist/NC119A.CBL +1178 -0
  327. cobol_py-0.1.0/tests/testdata/gov/nist/NC120A.CBL +1149 -0
  328. cobol_py-0.1.0/tests/testdata/gov/nist/NC121M.CBL +1290 -0
  329. cobol_py-0.1.0/tests/testdata/gov/nist/NC122A.CBL +1040 -0
  330. cobol_py-0.1.0/tests/testdata/gov/nist/NC123A.CBL +1131 -0
  331. cobol_py-0.1.0/tests/testdata/gov/nist/NC124A.CBL +2356 -0
  332. cobol_py-0.1.0/tests/testdata/gov/nist/NC125A.CBL +752 -0
  333. cobol_py-0.1.0/tests/testdata/gov/nist/NC126A.CBL +2638 -0
  334. cobol_py-0.1.0/tests/testdata/gov/nist/NC127A.CBL +351 -0
  335. cobol_py-0.1.0/tests/testdata/gov/nist/NC131A.CBL +470 -0
  336. cobol_py-0.1.0/tests/testdata/gov/nist/NC132A.CBL +796 -0
  337. cobol_py-0.1.0/tests/testdata/gov/nist/NC133A.CBL +715 -0
  338. cobol_py-0.1.0/tests/testdata/gov/nist/NC134A.CBL +715 -0
  339. cobol_py-0.1.0/tests/testdata/gov/nist/NC135A.CBL +523 -0
  340. cobol_py-0.1.0/tests/testdata/gov/nist/NC136A.CBL +491 -0
  341. cobol_py-0.1.0/tests/testdata/gov/nist/NC137A.CBL +505 -0
  342. cobol_py-0.1.0/tests/testdata/gov/nist/NC138A.CBL +656 -0
  343. cobol_py-0.1.0/tests/testdata/gov/nist/NC139A.CBL +619 -0
  344. cobol_py-0.1.0/tests/testdata/gov/nist/NC140A.CBL +751 -0
  345. cobol_py-0.1.0/tests/testdata/gov/nist/NC141A.CBL +509 -0
  346. cobol_py-0.1.0/tests/testdata/gov/nist/NC170A.CBL +2017 -0
  347. cobol_py-0.1.0/tests/testdata/gov/nist/NC171A.CBL +2270 -0
  348. cobol_py-0.1.0/tests/testdata/gov/nist/NC172A.CBL +2217 -0
  349. cobol_py-0.1.0/tests/testdata/gov/nist/NC173A.CBL +2220 -0
  350. cobol_py-0.1.0/tests/testdata/gov/nist/NC174A.CBL +1937 -0
  351. cobol_py-0.1.0/tests/testdata/gov/nist/NC175A.CBL +2081 -0
  352. cobol_py-0.1.0/tests/testdata/gov/nist/NC176A.CBL +2419 -0
  353. cobol_py-0.1.0/tests/testdata/gov/nist/NC177A.CBL +2139 -0
  354. cobol_py-0.1.0/tests/testdata/gov/nist/NC201A.CBL +2122 -0
  355. cobol_py-0.1.0/tests/testdata/gov/nist/NC202A.CBL +2221 -0
  356. cobol_py-0.1.0/tests/testdata/gov/nist/NC203A.CBL +1695 -0
  357. cobol_py-0.1.0/tests/testdata/gov/nist/NC204M.CBL +1209 -0
  358. cobol_py-0.1.0/tests/testdata/gov/nist/NC204M.DAT +19 -0
  359. cobol_py-0.1.0/tests/testdata/gov/nist/NC205A.CBL +806 -0
  360. cobol_py-0.1.0/tests/testdata/gov/nist/NC206A.CBL +1697 -0
  361. cobol_py-0.1.0/tests/testdata/gov/nist/NC207A.CBL +2725 -0
  362. cobol_py-0.1.0/tests/testdata/gov/nist/NC208A.CBL +1132 -0
  363. cobol_py-0.1.0/tests/testdata/gov/nist/NC209A.CBL +968 -0
  364. cobol_py-0.1.0/tests/testdata/gov/nist/NC210A.CBL +739 -0
  365. cobol_py-0.1.0/tests/testdata/gov/nist/NC211A.CBL +1898 -0
  366. cobol_py-0.1.0/tests/testdata/gov/nist/NC214M.CBL +411 -0
  367. cobol_py-0.1.0/tests/testdata/gov/nist/NC215A.CBL +485 -0
  368. cobol_py-0.1.0/tests/testdata/gov/nist/NC216A.CBL +2229 -0
  369. cobol_py-0.1.0/tests/testdata/gov/nist/NC217A.CBL +2189 -0
  370. cobol_py-0.1.0/tests/testdata/gov/nist/NC218A.CBL +3079 -0
  371. cobol_py-0.1.0/tests/testdata/gov/nist/NC219A.CBL +593 -0
  372. cobol_py-0.1.0/tests/testdata/gov/nist/NC220M.CBL +1039 -0
  373. cobol_py-0.1.0/tests/testdata/gov/nist/NC221A.CBL +963 -0
  374. cobol_py-0.1.0/tests/testdata/gov/nist/NC222A.CBL +554 -0
  375. cobol_py-0.1.0/tests/testdata/gov/nist/NC223A.CBL +2292 -0
  376. cobol_py-0.1.0/tests/testdata/gov/nist/NC224A.CBL +649 -0
  377. cobol_py-0.1.0/tests/testdata/gov/nist/NC225A.CBL +1926 -0
  378. cobol_py-0.1.0/tests/testdata/gov/nist/NC231A.CBL +1112 -0
  379. cobol_py-0.1.0/tests/testdata/gov/nist/NC232A.CBL +925 -0
  380. cobol_py-0.1.0/tests/testdata/gov/nist/NC233A.CBL +883 -0
  381. cobol_py-0.1.0/tests/testdata/gov/nist/NC234A.CBL +924 -0
  382. cobol_py-0.1.0/tests/testdata/gov/nist/NC235A.CBL +628 -0
  383. cobol_py-0.1.0/tests/testdata/gov/nist/NC236A.CBL +586 -0
  384. cobol_py-0.1.0/tests/testdata/gov/nist/NC237A.CBL +663 -0
  385. cobol_py-0.1.0/tests/testdata/gov/nist/NC238A.CBL +660 -0
  386. cobol_py-0.1.0/tests/testdata/gov/nist/NC239A.CBL +530 -0
  387. cobol_py-0.1.0/tests/testdata/gov/nist/NC240A.CBL +695 -0
  388. cobol_py-0.1.0/tests/testdata/gov/nist/NC241A.CBL +673 -0
  389. cobol_py-0.1.0/tests/testdata/gov/nist/NC242A.CBL +577 -0
  390. cobol_py-0.1.0/tests/testdata/gov/nist/NC243A.CBL +704 -0
  391. cobol_py-0.1.0/tests/testdata/gov/nist/NC244A.CBL +513 -0
  392. cobol_py-0.1.0/tests/testdata/gov/nist/NC245A.CBL +539 -0
  393. cobol_py-0.1.0/tests/testdata/gov/nist/NC246A.CBL +1322 -0
  394. cobol_py-0.1.0/tests/testdata/gov/nist/NC247A.CBL +866 -0
  395. cobol_py-0.1.0/tests/testdata/gov/nist/NC248A.CBL +623 -0
  396. cobol_py-0.1.0/tests/testdata/gov/nist/NC250A.CBL +1973 -0
  397. cobol_py-0.1.0/tests/testdata/gov/nist/NC251A.CBL +1419 -0
  398. cobol_py-0.1.0/tests/testdata/gov/nist/NC252A.CBL +1712 -0
  399. cobol_py-0.1.0/tests/testdata/gov/nist/NC253A.CBL +1980 -0
  400. cobol_py-0.1.0/tests/testdata/gov/nist/NC254A.CBL +673 -0
  401. cobol_py-0.1.0/tests/testdata/gov/nist/NC302M.CBL +53 -0
  402. cobol_py-0.1.0/tests/testdata/gov/nist/NC303M.CBL +34 -0
  403. cobol_py-0.1.0/tests/testdata/gov/nist/NC401M.CBL +334 -0
  404. cobol_py-0.1.0/tests/testdata/gov/nist/OBIC1A.CBL +82 -0
  405. cobol_py-0.1.0/tests/testdata/gov/nist/OBIC2A.CBL +312 -0
  406. cobol_py-0.1.0/tests/testdata/gov/nist/OBIC3A.CBL +338 -0
  407. cobol_py-0.1.0/tests/testdata/gov/nist/OBNC1M.CBL +784 -0
  408. cobol_py-0.1.0/tests/testdata/gov/nist/OBNC2M.CBL +931 -0
  409. cobol_py-0.1.0/tests/testdata/gov/nist/OBSQ1A.CBL +631 -0
  410. cobol_py-0.1.0/tests/testdata/gov/nist/OBSQ3A.CBL +649 -0
  411. cobol_py-0.1.0/tests/testdata/gov/nist/OBSQ4A.CBL +576 -0
  412. cobol_py-0.1.0/tests/testdata/gov/nist/OBSQ5A.CBL +628 -0
  413. cobol_py-0.1.0/tests/testdata/gov/nist/RL101A.CBL +459 -0
  414. cobol_py-0.1.0/tests/testdata/gov/nist/RL102A.CBL +619 -0
  415. cobol_py-0.1.0/tests/testdata/gov/nist/RL103A.CBL +618 -0
  416. cobol_py-0.1.0/tests/testdata/gov/nist/RL104A.CBL +641 -0
  417. cobol_py-0.1.0/tests/testdata/gov/nist/RL105A.CBL +635 -0
  418. cobol_py-0.1.0/tests/testdata/gov/nist/RL106A.CBL +816 -0
  419. cobol_py-0.1.0/tests/testdata/gov/nist/RL107A.CBL +793 -0
  420. cobol_py-0.1.0/tests/testdata/gov/nist/RL108A.CBL +464 -0
  421. cobol_py-0.1.0/tests/testdata/gov/nist/RL109A.CBL +647 -0
  422. cobol_py-0.1.0/tests/testdata/gov/nist/RL110A.CBL +624 -0
  423. cobol_py-0.1.0/tests/testdata/gov/nist/RL111A.CBL +1096 -0
  424. cobol_py-0.1.0/tests/testdata/gov/nist/RL112A.CBL +644 -0
  425. cobol_py-0.1.0/tests/testdata/gov/nist/RL113A.CBL +814 -0
  426. cobol_py-0.1.0/tests/testdata/gov/nist/RL114A.CBL +826 -0
  427. cobol_py-0.1.0/tests/testdata/gov/nist/RL115A.CBL +721 -0
  428. cobol_py-0.1.0/tests/testdata/gov/nist/RL116A.CBL +616 -0
  429. cobol_py-0.1.0/tests/testdata/gov/nist/RL117A.CBL +606 -0
  430. cobol_py-0.1.0/tests/testdata/gov/nist/RL118A.CBL +556 -0
  431. cobol_py-0.1.0/tests/testdata/gov/nist/RL119A.CBL +547 -0
  432. cobol_py-0.1.0/tests/testdata/gov/nist/RL201A.CBL +446 -0
  433. cobol_py-0.1.0/tests/testdata/gov/nist/RL202A.CBL +619 -0
  434. cobol_py-0.1.0/tests/testdata/gov/nist/RL203A.CBL +616 -0
  435. cobol_py-0.1.0/tests/testdata/gov/nist/RL204A.CBL +646 -0
  436. cobol_py-0.1.0/tests/testdata/gov/nist/RL205A.CBL +2412 -0
  437. cobol_py-0.1.0/tests/testdata/gov/nist/RL206A.CBL +565 -0
  438. cobol_py-0.1.0/tests/testdata/gov/nist/RL207A.CBL +1066 -0
  439. cobol_py-0.1.0/tests/testdata/gov/nist/RL208A.CBL +617 -0
  440. cobol_py-0.1.0/tests/testdata/gov/nist/RL209A.CBL +462 -0
  441. cobol_py-0.1.0/tests/testdata/gov/nist/RL210A.CBL +489 -0
  442. cobol_py-0.1.0/tests/testdata/gov/nist/RL211A.CBL +555 -0
  443. cobol_py-0.1.0/tests/testdata/gov/nist/RL212A.CBL +446 -0
  444. cobol_py-0.1.0/tests/testdata/gov/nist/RL213A.CBL +477 -0
  445. cobol_py-0.1.0/tests/testdata/gov/nist/RL301M.CBL +69 -0
  446. cobol_py-0.1.0/tests/testdata/gov/nist/RL302M.CBL +72 -0
  447. cobol_py-0.1.0/tests/testdata/gov/nist/RL401M.CBL +80 -0
  448. cobol_py-0.1.0/tests/testdata/gov/nist/RW101A.CBL +554 -0
  449. cobol_py-0.1.0/tests/testdata/gov/nist/RW102A.CBL +452 -0
  450. cobol_py-0.1.0/tests/testdata/gov/nist/RW103A.CBL +716 -0
  451. cobol_py-0.1.0/tests/testdata/gov/nist/RW104A.CBL +731 -0
  452. cobol_py-0.1.0/tests/testdata/gov/nist/RW301M.CBL +86 -0
  453. cobol_py-0.1.0/tests/testdata/gov/nist/RW302M.CBL +81 -0
  454. cobol_py-0.1.0/tests/testdata/gov/nist/SG101A.CBL +2851 -0
  455. cobol_py-0.1.0/tests/testdata/gov/nist/SG102A.CBL +612 -0
  456. cobol_py-0.1.0/tests/testdata/gov/nist/SG103A.CBL +487 -0
  457. cobol_py-0.1.0/tests/testdata/gov/nist/SG104A.CBL +594 -0
  458. cobol_py-0.1.0/tests/testdata/gov/nist/SG105A.CBL +594 -0
  459. cobol_py-0.1.0/tests/testdata/gov/nist/SG106A.CBL +594 -0
  460. cobol_py-0.1.0/tests/testdata/gov/nist/SG201A.CBL +1952 -0
  461. cobol_py-0.1.0/tests/testdata/gov/nist/SG202A.CBL +434 -0
  462. cobol_py-0.1.0/tests/testdata/gov/nist/SG203A.CBL +796 -0
  463. cobol_py-0.1.0/tests/testdata/gov/nist/SG204A.CBL +882 -0
  464. cobol_py-0.1.0/tests/testdata/gov/nist/SG302M.CBL +23 -0
  465. cobol_py-0.1.0/tests/testdata/gov/nist/SG303M.CBL +39 -0
  466. cobol_py-0.1.0/tests/testdata/gov/nist/SG401M.CBL +41 -0
  467. cobol_py-0.1.0/tests/testdata/gov/nist/SM101A.CBL +571 -0
  468. cobol_py-0.1.0/tests/testdata/gov/nist/SM102A.CBL +395 -0
  469. cobol_py-0.1.0/tests/testdata/gov/nist/SM103A.CBL +557 -0
  470. cobol_py-0.1.0/tests/testdata/gov/nist/SM104A.CBL +451 -0
  471. cobol_py-0.1.0/tests/testdata/gov/nist/SM105A.CBL +614 -0
  472. cobol_py-0.1.0/tests/testdata/gov/nist/SM106A.CBL +31 -0
  473. cobol_py-0.1.0/tests/testdata/gov/nist/SM107A.CBL +314 -0
  474. cobol_py-0.1.0/tests/testdata/gov/nist/SM201A.CBL +636 -0
  475. cobol_py-0.1.0/tests/testdata/gov/nist/SM202A.CBL +531 -0
  476. cobol_py-0.1.0/tests/testdata/gov/nist/SM203A.CBL +381 -0
  477. cobol_py-0.1.0/tests/testdata/gov/nist/SM204A.CBL +399 -0
  478. cobol_py-0.1.0/tests/testdata/gov/nist/SM205A.CBL +623 -0
  479. cobol_py-0.1.0/tests/testdata/gov/nist/SM206A.CBL +713 -0
  480. cobol_py-0.1.0/tests/testdata/gov/nist/SM207A.CBL +364 -0
  481. cobol_py-0.1.0/tests/testdata/gov/nist/SM208A.CBL +644 -0
  482. cobol_py-0.1.0/tests/testdata/gov/nist/SM301M.CBL +29 -0
  483. cobol_py-0.1.0/tests/testdata/gov/nist/SM401M.CBL +32 -0
  484. cobol_py-0.1.0/tests/testdata/gov/nist/SQ101M.CBL +1883 -0
  485. cobol_py-0.1.0/tests/testdata/gov/nist/SQ102A.CBL +843 -0
  486. cobol_py-0.1.0/tests/testdata/gov/nist/SQ103A.CBL +1057 -0
  487. cobol_py-0.1.0/tests/testdata/gov/nist/SQ104A.CBL +847 -0
  488. cobol_py-0.1.0/tests/testdata/gov/nist/SQ105A.CBL +1176 -0
  489. cobol_py-0.1.0/tests/testdata/gov/nist/SQ106A.CBL +2662 -0
  490. cobol_py-0.1.0/tests/testdata/gov/nist/SQ107A.CBL +710 -0
  491. cobol_py-0.1.0/tests/testdata/gov/nist/SQ108A.CBL +801 -0
  492. cobol_py-0.1.0/tests/testdata/gov/nist/SQ109M.CBL +617 -0
  493. cobol_py-0.1.0/tests/testdata/gov/nist/SQ110M.CBL +617 -0
  494. cobol_py-0.1.0/tests/testdata/gov/nist/SQ111A.CBL +493 -0
  495. cobol_py-0.1.0/tests/testdata/gov/nist/SQ112A.CBL +688 -0
  496. cobol_py-0.1.0/tests/testdata/gov/nist/SQ113A.CBL +1024 -0
  497. cobol_py-0.1.0/tests/testdata/gov/nist/SQ114A.CBL +964 -0
  498. cobol_py-0.1.0/tests/testdata/gov/nist/SQ115A.CBL +586 -0
  499. cobol_py-0.1.0/tests/testdata/gov/nist/SQ116A.CBL +959 -0
  500. cobol_py-0.1.0/tests/testdata/gov/nist/SQ117A.CBL +819 -0
  501. cobol_py-0.1.0/tests/testdata/gov/nist/SQ121A.CBL +610 -0
  502. cobol_py-0.1.0/tests/testdata/gov/nist/SQ122A.CBL +758 -0
  503. cobol_py-0.1.0/tests/testdata/gov/nist/SQ123A.CBL +906 -0
  504. cobol_py-0.1.0/tests/testdata/gov/nist/SQ124A.CBL +1194 -0
  505. cobol_py-0.1.0/tests/testdata/gov/nist/SQ125A.CBL +602 -0
  506. cobol_py-0.1.0/tests/testdata/gov/nist/SQ126A.CBL +737 -0
  507. cobol_py-0.1.0/tests/testdata/gov/nist/SQ127A.CBL +621 -0
  508. cobol_py-0.1.0/tests/testdata/gov/nist/SQ128A.CBL +554 -0
  509. cobol_py-0.1.0/tests/testdata/gov/nist/SQ129A.CBL +627 -0
  510. cobol_py-0.1.0/tests/testdata/gov/nist/SQ130A.CBL +526 -0
  511. cobol_py-0.1.0/tests/testdata/gov/nist/SQ131A.CBL +585 -0
  512. cobol_py-0.1.0/tests/testdata/gov/nist/SQ132A.CBL +584 -0
  513. cobol_py-0.1.0/tests/testdata/gov/nist/SQ133A.CBL +1115 -0
  514. cobol_py-0.1.0/tests/testdata/gov/nist/SQ134A.CBL +1092 -0
  515. cobol_py-0.1.0/tests/testdata/gov/nist/SQ135A.CBL +598 -0
  516. cobol_py-0.1.0/tests/testdata/gov/nist/SQ136A.CBL +815 -0
  517. cobol_py-0.1.0/tests/testdata/gov/nist/SQ137A.CBL +837 -0
  518. cobol_py-0.1.0/tests/testdata/gov/nist/SQ138A.CBL +833 -0
  519. cobol_py-0.1.0/tests/testdata/gov/nist/SQ139A.CBL +652 -0
  520. cobol_py-0.1.0/tests/testdata/gov/nist/SQ140A.CBL +660 -0
  521. cobol_py-0.1.0/tests/testdata/gov/nist/SQ141A.CBL +627 -0
  522. cobol_py-0.1.0/tests/testdata/gov/nist/SQ142A.CBL +630 -0
  523. cobol_py-0.1.0/tests/testdata/gov/nist/SQ143A.CBL +481 -0
  524. cobol_py-0.1.0/tests/testdata/gov/nist/SQ144A.CBL +771 -0
  525. cobol_py-0.1.0/tests/testdata/gov/nist/SQ146A.CBL +512 -0
  526. cobol_py-0.1.0/tests/testdata/gov/nist/SQ147A.CBL +615 -0
  527. cobol_py-0.1.0/tests/testdata/gov/nist/SQ148A.CBL +654 -0
  528. cobol_py-0.1.0/tests/testdata/gov/nist/SQ149A.CBL +507 -0
  529. cobol_py-0.1.0/tests/testdata/gov/nist/SQ150A.CBL +514 -0
  530. cobol_py-0.1.0/tests/testdata/gov/nist/SQ151A.CBL +600 -0
  531. cobol_py-0.1.0/tests/testdata/gov/nist/SQ152A.CBL +609 -0
  532. cobol_py-0.1.0/tests/testdata/gov/nist/SQ153A.CBL +598 -0
  533. cobol_py-0.1.0/tests/testdata/gov/nist/SQ154A.CBL +505 -0
  534. cobol_py-0.1.0/tests/testdata/gov/nist/SQ155A.CBL +518 -0
  535. cobol_py-0.1.0/tests/testdata/gov/nist/SQ156A.CBL +518 -0
  536. cobol_py-0.1.0/tests/testdata/gov/nist/SQ201M.CBL +780 -0
  537. cobol_py-0.1.0/tests/testdata/gov/nist/SQ202A.CBL +450 -0
  538. cobol_py-0.1.0/tests/testdata/gov/nist/SQ203A.CBL +555 -0
  539. cobol_py-0.1.0/tests/testdata/gov/nist/SQ204A.CBL +619 -0
  540. cobol_py-0.1.0/tests/testdata/gov/nist/SQ205A.CBL +573 -0
  541. cobol_py-0.1.0/tests/testdata/gov/nist/SQ206A.CBL +691 -0
  542. cobol_py-0.1.0/tests/testdata/gov/nist/SQ207M.CBL +442 -0
  543. cobol_py-0.1.0/tests/testdata/gov/nist/SQ208M.CBL +666 -0
  544. cobol_py-0.1.0/tests/testdata/gov/nist/SQ209M.CBL +461 -0
  545. cobol_py-0.1.0/tests/testdata/gov/nist/SQ210M.CBL +376 -0
  546. cobol_py-0.1.0/tests/testdata/gov/nist/SQ211A.CBL +556 -0
  547. cobol_py-0.1.0/tests/testdata/gov/nist/SQ212A.CBL +769 -0
  548. cobol_py-0.1.0/tests/testdata/gov/nist/SQ213A.CBL +642 -0
  549. cobol_py-0.1.0/tests/testdata/gov/nist/SQ214A.CBL +572 -0
  550. cobol_py-0.1.0/tests/testdata/gov/nist/SQ215A.CBL +650 -0
  551. cobol_py-0.1.0/tests/testdata/gov/nist/SQ216A.CBL +610 -0
  552. cobol_py-0.1.0/tests/testdata/gov/nist/SQ217A.CBL +611 -0
  553. cobol_py-0.1.0/tests/testdata/gov/nist/SQ218A.CBL +701 -0
  554. cobol_py-0.1.0/tests/testdata/gov/nist/SQ219A.CBL +704 -0
  555. cobol_py-0.1.0/tests/testdata/gov/nist/SQ220A.CBL +722 -0
  556. cobol_py-0.1.0/tests/testdata/gov/nist/SQ221A.CBL +719 -0
  557. cobol_py-0.1.0/tests/testdata/gov/nist/SQ222A.CBL +703 -0
  558. cobol_py-0.1.0/tests/testdata/gov/nist/SQ223A.CBL +713 -0
  559. cobol_py-0.1.0/tests/testdata/gov/nist/SQ224A.CBL +573 -0
  560. cobol_py-0.1.0/tests/testdata/gov/nist/SQ225A.CBL +654 -0
  561. cobol_py-0.1.0/tests/testdata/gov/nist/SQ226A.CBL +1652 -0
  562. cobol_py-0.1.0/tests/testdata/gov/nist/SQ227A.CBL +1114 -0
  563. cobol_py-0.1.0/tests/testdata/gov/nist/SQ228A.CBL +785 -0
  564. cobol_py-0.1.0/tests/testdata/gov/nist/SQ229A.CBL +611 -0
  565. cobol_py-0.1.0/tests/testdata/gov/nist/SQ230A.CBL +514 -0
  566. cobol_py-0.1.0/tests/testdata/gov/nist/SQ302M.CBL +70 -0
  567. cobol_py-0.1.0/tests/testdata/gov/nist/SQ303M.CBL +51 -0
  568. cobol_py-0.1.0/tests/testdata/gov/nist/SQ401M.CBL +139 -0
  569. cobol_py-0.1.0/tests/testdata/gov/nist/ST101A.CBL +577 -0
  570. cobol_py-0.1.0/tests/testdata/gov/nist/ST102A.CBL +80 -0
  571. cobol_py-0.1.0/tests/testdata/gov/nist/ST103A.CBL +475 -0
  572. cobol_py-0.1.0/tests/testdata/gov/nist/ST104A.CBL +354 -0
  573. cobol_py-0.1.0/tests/testdata/gov/nist/ST105A.CBL +447 -0
  574. cobol_py-0.1.0/tests/testdata/gov/nist/ST106A.CBL +402 -0
  575. cobol_py-0.1.0/tests/testdata/gov/nist/ST107A.CBL +524 -0
  576. cobol_py-0.1.0/tests/testdata/gov/nist/ST108A.CBL +621 -0
  577. cobol_py-0.1.0/tests/testdata/gov/nist/ST109A.CBL +370 -0
  578. cobol_py-0.1.0/tests/testdata/gov/nist/ST110A.CBL +107 -0
  579. cobol_py-0.1.0/tests/testdata/gov/nist/ST111A.CBL +499 -0
  580. cobol_py-0.1.0/tests/testdata/gov/nist/ST112M.CBL +388 -0
  581. cobol_py-0.1.0/tests/testdata/gov/nist/ST113M.CBL +69 -0
  582. cobol_py-0.1.0/tests/testdata/gov/nist/ST114M.CBL +469 -0
  583. cobol_py-0.1.0/tests/testdata/gov/nist/ST115A.CBL +520 -0
  584. cobol_py-0.1.0/tests/testdata/gov/nist/ST116A.CBL +186 -0
  585. cobol_py-0.1.0/tests/testdata/gov/nist/ST117A.CBL +552 -0
  586. cobol_py-0.1.0/tests/testdata/gov/nist/ST118A.CBL +631 -0
  587. cobol_py-0.1.0/tests/testdata/gov/nist/ST119A.CBL +1001 -0
  588. cobol_py-0.1.0/tests/testdata/gov/nist/ST120A.CBL +80 -0
  589. cobol_py-0.1.0/tests/testdata/gov/nist/ST121A.CBL +475 -0
  590. cobol_py-0.1.0/tests/testdata/gov/nist/ST122A.CBL +379 -0
  591. cobol_py-0.1.0/tests/testdata/gov/nist/ST123A.CBL +123 -0
  592. cobol_py-0.1.0/tests/testdata/gov/nist/ST124A.CBL +512 -0
  593. cobol_py-0.1.0/tests/testdata/gov/nist/ST125A.CBL +436 -0
  594. cobol_py-0.1.0/tests/testdata/gov/nist/ST126A.CBL +962 -0
  595. cobol_py-0.1.0/tests/testdata/gov/nist/ST127A.CBL +1003 -0
  596. cobol_py-0.1.0/tests/testdata/gov/nist/ST131A.CBL +962 -0
  597. cobol_py-0.1.0/tests/testdata/gov/nist/ST132A.CBL +745 -0
  598. cobol_py-0.1.0/tests/testdata/gov/nist/ST133A.CBL +907 -0
  599. cobol_py-0.1.0/tests/testdata/gov/nist/ST134A.CBL +619 -0
  600. cobol_py-0.1.0/tests/testdata/gov/nist/ST135A.CBL +595 -0
  601. cobol_py-0.1.0/tests/testdata/gov/nist/ST136A.CBL +556 -0
  602. cobol_py-0.1.0/tests/testdata/gov/nist/ST137A.CBL +749 -0
  603. cobol_py-0.1.0/tests/testdata/gov/nist/ST139A.CBL +866 -0
  604. cobol_py-0.1.0/tests/testdata/gov/nist/ST140A.CBL +949 -0
  605. cobol_py-0.1.0/tests/testdata/gov/nist/ST144A.CBL +953 -0
  606. cobol_py-0.1.0/tests/testdata/gov/nist/ST146A.CBL +690 -0
  607. cobol_py-0.1.0/tests/testdata/gov/nist/ST147A.CBL +1317 -0
  608. cobol_py-0.1.0/tests/testdata/gov/nist/ST301M.CBL +86 -0
  609. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/ASGElement.cbl +4 -0
  610. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/HelloWorld.cbl +7 -0
  611. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/InvalidKeyword.cbl +2 -0
  612. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/InvalidLineFormat.cbl +2 -0
  613. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/DataDescriptionEntryCall.cbl +7 -0
  614. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/FileDataDescriptionEntryCall.cbl +60 -0
  615. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/FileDescriptionEntryFromFileControlClauseCall.cbl +21 -0
  616. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/FunctionCall.cbl +55 -0
  617. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/FunctionDateOfIntegerCall.cbl +9 -0
  618. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/InDataCall.cbl +11 -0
  619. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/InDataInvalidCall.cbl +8 -0
  620. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/ParagraphCall.cbl +7 -0
  621. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/ParagraphInSectionCall.cbl +10 -0
  622. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/RecordCall.cbl +26 -0
  623. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/SectionCall.cbl +7 -0
  624. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/SpecialRegisterCall.cbl +31 -0
  625. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/TableCall.cbl +19 -0
  626. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/communication/CommunicationDescriptionInput.cbl +16 -0
  627. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/communication/CommunicationDescriptionInput.cbl.tree +0 -0
  628. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/communication/CommunicationDescriptionInputOutput.cbl +13 -0
  629. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/communication/CommunicationDescriptionOutput.cbl +13 -0
  630. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/database/Database.cbl +6 -0
  631. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/file/FileControlRead.cbl +20 -0
  632. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/file/FileDescriptionEntry.cbl +19 -0
  633. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/linkage/DataDescription01.cbl +7 -0
  634. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/localstorage/DataDescription01.cbl +8 -0
  635. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/localstorage/DataDescription02.cbl +6 -0
  636. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/programlibrary/ProgramLibraryExport.cbl +8 -0
  637. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/programlibrary/ProgramLibraryImport.cbl +17 -0
  638. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportDescription.cbl +22 -0
  639. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportGroupDescriptionHierarchy.cbl +13 -0
  640. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportGroupDescriptionPrintable.cbl +17 -0
  641. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportGroupDescriptionSingle.cbl +10 -0
  642. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportGroupDescriptionSource.cbl +9 -0
  643. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportGroupDescriptionVertical.cbl +12 -0
  644. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/screen/Screen.cbl +9 -0
  645. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/screen/ScreenFiller.cbl +5 -0
  646. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/screen/ScreenUsing.cbl +7 -0
  647. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/BinaryDataDescriptionEntry.cbl +11 -0
  648. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescription01.cbl +8 -0
  649. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescription66Group.cbl +8 -0
  650. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescription66Through.cbl +10 -0
  651. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescription77.cbl +6 -0
  652. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescription88.cbl +7 -0
  653. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionClauses.cbl +40 -0
  654. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionFiller.cbl +6 -0
  655. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionFillerNested.cbl +7 -0
  656. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionPicture.cbl +5 -0
  657. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionRedefined.cbl +8 -0
  658. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionRedefines.cbl +10 -0
  659. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionValueAre.cbl +5 -0
  660. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionValueBoolean.cbl +6 -0
  661. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionValueFigurativeConstant.cbl +18 -0
  662. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionValueNonNumeric.cbl +6 -0
  663. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionValueNumeric.cbl +6 -0
  664. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/configuration/ConfigurationSection.cbl +13 -0
  665. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/configuration/ConfigurationSectionWrongOrder.cbl +14 -0
  666. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/configuration/EmptyConfigurationSectionParagraphs.cbl +7 -0
  667. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/AssignToDisk.cbl +6 -0
  668. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/AssignToDynamic.cbl +6 -0
  669. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/AssignToExternal.cbl +6 -0
  670. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/FileControl.cbl +17 -0
  671. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/FileControlDisplay.cbl +7 -0
  672. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/MissingFileControl.cbl +5 -0
  673. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/iocontrol/IoControl.cbl +10 -0
  674. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/specialnames/SpecialNames.cbl +18 -0
  675. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/ProgramIdCommon.cbl +2 -0
  676. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/ProgramIdLibrary.cbl +2 -0
  677. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/fixed/IdentificationDivision.cbl +15 -0
  678. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/fixed/IdentificationDivisionEndRemarks.cbl +6 -0
  679. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/fixed/IdentificationDivisionMultiline.cbl +21 -0
  680. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/fixed/IdentificationDivisionWithoutDots.cbl +15 -0
  681. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/tandem/IdentificationDivision.cbl +8 -0
  682. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/tandem/IdentificationDivisionEndRemarks.cbl +4 -0
  683. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/variable/IdentificationDivision.cbl +15 -0
  684. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/variable/IdentificationDivisionComments.cbl +15 -0
  685. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/variable/IdentificationDivisionEndRemarks.cbl +6 -0
  686. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/variable/IdentificationDivisionMultiline.cbl +21 -0
  687. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/Paragraph.cbl +5 -0
  688. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/ParagraphRedefined.cbl +7 -0
  689. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/ProcedureDivisionGivingClause.cbl +7 -0
  690. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/ProcedureDivisionUsingClause.cbl +9 -0
  691. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/Section.cbl +5 -0
  692. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/SectionRedefined.cbl +7 -0
  693. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/SectionWithParagraphs.cbl +10 -0
  694. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/SectionWithParagraphsRedefined.cbl +10 -0
  695. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/accept/AcceptStatement.cbl +7 -0
  696. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/add/AddCorrespondingStatement.cbl +8 -0
  697. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/add/AddToGivingStatement.cbl +13 -0
  698. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/add/AddToStatement.cbl +10 -0
  699. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/alter/AlterStatement.cbl +9 -0
  700. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/call/CallStatement.cbl +9 -0
  701. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/call/CallStatementFunction.cbl +15 -0
  702. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/cancel/CancelStatement.cbl +5 -0
  703. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/close/CloseStatement.cbl +31 -0
  704. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/compute/ComputeStatement.cbl +4 -0
  705. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/compute/ComputeStatementInTable.cbl +4 -0
  706. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/continuestmt/ContinueStatement.cbl +4 -0
  707. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/delete/DeleteStatement.cbl +6 -0
  708. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/disable/DisableStatement.cbl +11 -0
  709. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/display/DisplayAtStatement.cbl +8 -0
  710. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/display/DisplayStatement.cbl +5 -0
  711. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/display/DisplayUponStatement.cbl +8 -0
  712. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/divide/DivideStatement.cbl +20 -0
  713. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/enable/EnableStatement.cbl +11 -0
  714. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/entry/EntryStatement.cbl +4 -0
  715. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/evaluate/EvaluateStatement.cbl +9 -0
  716. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/evaluate/EvaluateStatementWhenOther.cbl +6 -0
  717. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execcics/ExecCics.cbl +32 -0
  718. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execsql/ExecSql.cbl +17 -0
  719. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execsql/ExecSqlBeforeParagraph.cbl +10 -0
  720. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execsql/ExecSqlMultiline.cbl +32 -0
  721. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execsql/ExecSqlMultilineWithDot.cbl +7 -0
  722. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execsqlims/ExecSqlIms.cbl +24 -0
  723. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/exhibit/ExhibitStatement.cbl +4 -0
  724. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/exit/ExitProgramStatement.cbl +4 -0
  725. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/exit/ExitStatement.cbl +4 -0
  726. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/generate/GenerateStatement.cbl +8 -0
  727. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/goback/GobackStatement.cbl +4 -0
  728. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/gotostmt/GoToStatement.cbl +16 -0
  729. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/ifstmt/IfStatement.cbl +8 -0
  730. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/ifstmt/IfStatementNoThen.cbl +8 -0
  731. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/initialize/InitializeStatement.cbl +11 -0
  732. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/initiate/InitiateStatement.cbl +10 -0
  733. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/inspect/InspectConvertingStatement.cbl +7 -0
  734. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/inspect/InspectReplacingStatement.cbl +7 -0
  735. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/inspect/InspectTallyingReplacingStatement.cbl +10 -0
  736. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/inspect/InspectTallyingStatement.cbl +7 -0
  737. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/merge/MergeStatement.cbl +18 -0
  738. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/move/MoveCorrespondingToStatement.cbl +9 -0
  739. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/move/MoveToStatement.cbl +11 -0
  740. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/move/MoveToStatementQualifiedDataName.cbl +10 -0
  741. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/multiply/MultiplyGivingStatement.cbl +13 -0
  742. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/multiply/MultiplyRegularStatement.cbl +12 -0
  743. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/open/OpenStatement.cbl +28 -0
  744. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformEndPerformOneLine.cbl +19 -0
  745. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformInlineTimes.cbl +7 -0
  746. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformInlineUntil.cbl +9 -0
  747. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformInlineVarying.cbl +9 -0
  748. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformProcedure.cbl +12 -0
  749. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformProcedureThrough.cbl +15 -0
  750. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformProcedureTimes.cbl +7 -0
  751. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformProcedureUntil.cbl +8 -0
  752. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformProcedureVarying.cbl +6 -0
  753. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformSection.cbl +6 -0
  754. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/purge/PurgeStatement.cbl +4 -0
  755. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/read/ReadStatement.cbl +19 -0
  756. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/receive/ReceiveFromStatement.cbl +9 -0
  757. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/receive/ReceiveIntoStatement.cbl +6 -0
  758. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/release/ReleaseStatement.cbl +4 -0
  759. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/returnstmt/ReturnStatement.cbl +7 -0
  760. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/rewrite/RewriteStatement.cbl +7 -0
  761. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/search/SearchStatement.cbl +8 -0
  762. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/send/SendAsyncStatement.cbl +5 -0
  763. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/send/SendSyncStatement.cbl +8 -0
  764. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/set/SetByStatement.cbl +4 -0
  765. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/set/SetToStatement.cbl +9 -0
  766. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/sort/SortStatement.cbl +20 -0
  767. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/start/StartStatement.cbl +7 -0
  768. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/stop/StopStatement.cbl +5 -0
  769. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/stop/StopStatementGiving.cbl +4 -0
  770. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/string/StringStatement.cbl +10 -0
  771. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/subtract/SubtractCorrespondingStatement.cbl +8 -0
  772. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/subtract/SubtractFromGivingStatement.cbl +11 -0
  773. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/subtract/SubtractFromStatement.cbl +9 -0
  774. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/terminate/TerminateStatement.cbl +4 -0
  775. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/unstring/UnstringStatement.cbl +14 -0
  776. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/unstring/UnstringStatementIndexedItem.cbl +117 -0
  777. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/use/UseStatement.cbl +15 -0
  778. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/write/WriteStatement.cbl +18 -0
  779. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionAnd.cbl +8 -0
  780. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionGreater.cbl +4 -0
  781. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionGreaterOrEqual.cbl +4 -0
  782. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionLess.cbl +4 -0
  783. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionLessOrEqual.cbl +4 -0
  784. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionNotEqualChar.cbl +4 -0
  785. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionOr.cbl +8 -0
  786. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/HelloWorld.cbl +6 -0
  787. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/HelloWorld.cbl.tree +18 -0
  788. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ExecSqlEmptyLine.cbl +7 -0
  789. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ExecSqlEmptyLine.cbl.tree +12 -0
  790. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ExecSqlReplaceToken.cbl +7 -0
  791. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ExecSqlReplaceToken.cbl.tree +12 -0
  792. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/Fixed.cbl +7 -0
  793. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/Fixed.cbl.tree +18 -0
  794. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/LineContinuationMixed.cbl +50 -0
  795. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/LineContinuationMixed.cbl.tree +225 -0
  796. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ProgramIdCommentEntry.cbl +7 -0
  797. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ProgramIdCommentEntry.cbl.tree +9 -0
  798. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ProgramIdNoDot.cbl +4 -0
  799. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ProgramIdNoDot.cbl.tree +7 -0
  800. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/QuotesInCommentEntry.cbl +8 -0
  801. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/QuotesInCommentEntry.cbl.tree +21 -0
  802. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/Security.cbl +13 -0
  803. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/Security.cbl.tree +32 -0
  804. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/CommaSpace.cbl +15 -0
  805. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/CommaSpace.cbl.tree +99 -0
  806. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ComputeStatement.cbl +4 -0
  807. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ComputeStatement.cbl.tree +38 -0
  808. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ComputeStatementInTable.cbl +4 -0
  809. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ComputeStatementInTable.cbl.tree +42 -0
  810. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Condition.cbl +6 -0
  811. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Condition.cbl.tree +22 -0
  812. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionInAnd.cbl +6 -0
  813. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionInAnd.cbl.tree +46 -0
  814. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionInOr.cbl +6 -0
  815. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionInOr.cbl.tree +46 -0
  816. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNameSubscript.cbl +7 -0
  817. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNameSubscript.cbl.tree +33 -0
  818. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNot.cbl +6 -0
  819. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNot.cbl.tree +22 -0
  820. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNotInAnd.cbl +6 -0
  821. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNotInAnd.cbl.tree +46 -0
  822. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNotInOr.cbl +6 -0
  823. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNotInOr.cbl.tree +46 -0
  824. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Evaluate.cbl +37 -0
  825. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Evaluate.cbl.tree +344 -0
  826. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/InlineComment.cbl +12 -0
  827. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/InlineComment.cbl.tree +90 -0
  828. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/InlineCommentNoWs.cbl +5 -0
  829. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/InlineCommentNoWs.cbl.tree +19 -0
  830. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Minimal.cbl +8 -0
  831. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Minimal.cbl.tree +42 -0
  832. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ParagraphWithoutDot.cbl +5 -0
  833. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ParagraphWithoutDot.cbl.tree +16 -0
  834. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Tandem.cbl +7 -0
  835. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Tandem.cbl.tree +18 -0
  836. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/AddToStatement.cbl +6 -0
  837. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/AddToStatement.cbl.tree +27 -0
  838. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyDisplay.cbl +6 -0
  839. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyDisplay.cbl.tree +18 -0
  840. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyDisplayBook.cpy +1 -0
  841. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInAdd.cbl +7 -0
  842. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInAdd.cbl.tree +56 -0
  843. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInAddBook.cpy +3 -0
  844. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInLiteral.cbl +11 -0
  845. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInLiteral.cbl.tree +39 -0
  846. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInPicture.cbl +6 -0
  847. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInPicture.cbl.tree +21 -0
  848. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInPictureBook.cpy +2 -0
  849. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyNewLine.cbl +7 -0
  850. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyNewLine.cbl.tree +18 -0
  851. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyNewLineBook.cpy +1 -0
  852. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplace.cbl +7 -0
  853. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplace.cbl.tree +32 -0
  854. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplace1.cpy +1 -0
  855. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplace2.cpy +1 -0
  856. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplaceLinebreak.cbl +6 -0
  857. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplaceLinebreak.cbl.tree +17 -0
  858. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplaceLinebreakBook.cpy +2 -0
  859. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/EqualOr.cbl +7 -0
  860. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/EqualOr.cbl.tree +62 -0
  861. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecCics.cbl +34 -0
  862. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecCics.cbl.tree +95 -0
  863. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecCicsEof.cbl +4 -0
  864. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecCicsEof.cbl.tree +13 -0
  865. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecSql.cbl +17 -0
  866. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecSql.cbl.tree +38 -0
  867. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecSqlCopy.cbl +7 -0
  868. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecSqlCopy.cbl.tree +16 -0
  869. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/FunctionCall.cbl +80 -0
  870. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/FunctionCall.cbl.tree +790 -0
  871. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/HelloWorldVar.cbl +6 -0
  872. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/HelloWorldVar.cbl.tree +18 -0
  873. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfElseMoveStatement.cbl +13 -0
  874. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfElseMoveStatement.cbl.tree +63 -0
  875. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfElseStatement.cbl +11 -0
  876. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfElseStatement.cbl.tree +60 -0
  877. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfStatement.cbl +15 -0
  878. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfStatement.cbl.tree +97 -0
  879. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Literal.cbl +11 -0
  880. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Literal.cbl.tree +53 -0
  881. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/MoveStatement.cbl +6 -0
  882. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/MoveStatement.cbl.tree +33 -0
  883. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/PictureGreedy.cbl +22 -0
  884. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/PictureGreedy.cbl.tree +185 -0
  885. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ProcedureDeclaratives.cbl +10 -0
  886. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ProcedureDeclaratives.cbl.tree +34 -0
  887. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Replace.cbl +8 -0
  888. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Replace.cbl.tree +18 -0
  889. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ReplaceAmbiguous.cbl +9 -0
  890. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ReplaceAmbiguous.cbl.tree +18 -0
  891. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ReplaceMultiline.cbl +16 -0
  892. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ReplaceMultiline.cbl.tree +57 -0
  893. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/StringStatement.cbl +5 -0
  894. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/StringStatement.cbl.tree +64 -0
  895. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Variable.cbl +7 -0
  896. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Variable.cbl.tree +18 -0
  897. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/XoptsApost.cbl +6 -0
  898. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/XoptsApost.cbl.tree +9 -0
  899. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/XoptsSpApost.cbl +6 -0
  900. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/XoptsSpApost.cbl.tree +9 -0
  901. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolword/variable/CopyCblWord.cbl +6 -0
  902. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolword/variable/CopyCblWord.cbl.preprocessed +7 -0
  903. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolword/variable/copybooks/abc.cpy +1 -0
  904. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolwordlibrary/variable/CopyCobolWordLibrary.cbl +6 -0
  905. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolwordlibrary/variable/CopyCobolWordLibrary.cbl.preprocessed +7 -0
  906. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolwordlibrary/variable/copybooks/CopyBook1.cpy +1 -0
  907. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyof/CopyOf.cbl +7 -0
  908. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyof/CopyOf.cbl.preprocessed +8 -0
  909. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyof/copybooks/CopyOf1.cpy +3 -0
  910. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyreplace/variable/CopyReplace.cbl +7 -0
  911. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyreplace/variable/CopyReplace.cbl.preprocessed +9 -0
  912. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyreplace/variable/copybooks/CopyReplace1.cpy +1 -0
  913. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyreplace/variable/copybooks/CopyReplace2.cpy +1 -0
  914. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/empty/variable/CopyNoExtension.cbl +6 -0
  915. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/empty/variable/CopyNoExtension.cbl.preprocessed +7 -0
  916. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/empty/variable/copybooks/SomeCopyBook +1 -0
  917. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/precedence/variable/CopyPrecedence.cbl +5 -0
  918. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/precedence/variable/CopyPrecedence.cbl.preprocessed +5 -0
  919. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/precedence/variable/copybooks/SomeCopyBook +1 -0
  920. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/precedence/variable/copybooks/SomeCopyBook.cbl +1 -0
  921. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/precedence/variable/copybooks/SomeCopyBook.txt +1 -0
  922. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/txt/variable/CopyTxtExtension.cbl +6 -0
  923. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/txt/variable/CopyTxtExtension.cbl.preprocessed +7 -0
  924. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/txt/variable/copybooks/SomeCopyBook.txt +1 -0
  925. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/linkage/variable/CopyLinkage.cbl +5 -0
  926. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/linkage/variable/CopyLinkage.cbl.preprocessed +5 -0
  927. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/linkage/variable/copybooks/Linkage +1 -0
  928. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literallibrary/variable/CopyLiteralLibrary.cbl +6 -0
  929. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literallibrary/variable/CopyLiteralLibrary.cbl.preprocessed +7 -0
  930. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literallibrary/variable/copybooks/CopyBook1.cpy +1 -0
  931. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/CopySubDir.cbl +10 -0
  932. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/CopySubDir.cbl.preprocessed +15 -0
  933. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/copybooks/somedir/CopyBook1.cpy +1 -0
  934. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/copybooks/somedir/CopyBook2.cpy +1 -0
  935. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/copybooks/somedir/CopyBook3.cpy +1 -0
  936. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/copybooks/somedir/CopyBook4.cpy +1 -0
  937. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/copybooks/somedir/CopyBook5.cpy +1 -0
  938. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/suppress/fixed/CopySuppress.cbl +10 -0
  939. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/suppress/fixed/CopySuppress.cbl.preprocessed +7 -0
  940. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/suppress/fixed/copybooks/CopySuppress.cpy +1 -0
  941. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/CompilerDirective.cbl +4 -0
  942. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/CompilerDirective.cbl.preprocessed +4 -0
  943. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/DeformedLines.cbl +8 -0
  944. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/DeformedLines.cbl.preprocessed +8 -0
  945. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/EmptyLines.cbl +9 -0
  946. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/EmptyLines.cbl.preprocessed +9 -0
  947. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecCics.cbl +32 -0
  948. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecCics.cbl.preprocessed +32 -0
  949. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSql.cbl +17 -0
  950. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSql.cbl.preprocessed +17 -0
  951. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlEmptyLine.cbl +7 -0
  952. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlEmptyLine.cbl.preprocessed +7 -0
  953. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlIms.cbl +24 -0
  954. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlIms.cbl.preprocessed +24 -0
  955. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlMultiline.cbl +32 -0
  956. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlMultiline.cbl.preprocessed +32 -0
  957. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/Fixed.cbl +7 -0
  958. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/Fixed.cbl.preprocessed +7 -0
  959. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivision.cbl +15 -0
  960. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivision.cbl.preprocessed +15 -0
  961. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivisionMultiline.cbl +21 -0
  962. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivisionMultiline.cbl.preprocessed +21 -0
  963. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivisionWithPadding.cbl +5 -0
  964. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivisionWithPadding.cbl.preprocessed +5 -0
  965. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/InlineCommentNoWs.cbl +5 -0
  966. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/InlineCommentNoWs.cbl.preprocessed +5 -0
  967. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuation.cbl +6 -0
  968. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuation.cbl.preprocessed +5 -0
  969. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationAmbiguousProcedureDivision.cbl +7 -0
  970. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationAmbiguousProcedureDivision.cbl.preprocessed +6 -0
  971. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationDoubleQuotes.cbl +5 -0
  972. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationDoubleQuotes.cbl.preprocessed +4 -0
  973. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationDoubleQuotesNonCompliant.cbl +10 -0
  974. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationDoubleQuotesNonCompliant.cbl.preprocessed +8 -0
  975. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationEscapedQuotes.cbl +8 -0
  976. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationEscapedQuotes.cbl.preprocessed +7 -0
  977. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationMultiple.cbl +7 -0
  978. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationMultiple.cbl.preprocessed +5 -0
  979. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationWhitespace.cbl +8 -0
  980. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationWhitespace.cbl.preprocessed +7 -0
  981. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/QuotesInCommentEntry.cbl +8 -0
  982. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/QuotesInCommentEntry.cbl.preprocessed +8 -0
  983. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/Security.cbl +13 -0
  984. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/Security.cbl.preprocessed +13 -0
  985. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/sub/line/writer/LineContinuation.cbl.preprocessed +3 -0
  986. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/EjectStatement.cbl +5 -0
  987. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/EjectStatement.cbl.preprocessed +5 -0
  988. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/EmptyLines.cbl +9 -0
  989. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/EmptyLines.cbl.preprocessed +9 -0
  990. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecCics.cbl +32 -0
  991. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecCics.cbl.preprocessed +32 -0
  992. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSql.cbl +17 -0
  993. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSql.cbl.preprocessed +17 -0
  994. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSqlIms.cbl +24 -0
  995. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSqlIms.cbl.preprocessed +24 -0
  996. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSqlMultiline.cbl +32 -0
  997. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSqlMultiline.cbl.preprocessed +32 -0
  998. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/IdentificationDivisionInline.cbl +8 -0
  999. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/IdentificationDivisionInline.cbl.preprocessed +8 -0
  1000. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/IdentificationDivisionInlineWithPadding.cbl +3 -0
  1001. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/IdentificationDivisionInlineWithPadding.cbl.preprocessed +3 -0
  1002. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/InlineCommentNoWs.cbl +5 -0
  1003. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/InlineCommentNoWs.cbl.preprocessed +5 -0
  1004. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/LineContinuation.cbl +6 -0
  1005. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/LineContinuation.cbl.preprocessed +5 -0
  1006. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/LineContinuationWhitespace.cbl +8 -0
  1007. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/LineContinuationWhitespace.cbl.preprocessed +7 -0
  1008. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Minimal.cbl +8 -0
  1009. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Minimal.cbl.preprocessed +8 -0
  1010. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip1Statement.cbl +5 -0
  1011. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip1Statement.cbl.preprocessed +5 -0
  1012. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip2Statement.cbl +5 -0
  1013. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip2Statement.cbl.preprocessed +5 -0
  1014. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip3Statement.cbl +5 -0
  1015. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip3Statement.cbl.preprocessed +5 -0
  1016. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Tandem.cbl +7 -0
  1017. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Tandem.cbl.preprocessed +7 -0
  1018. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/TitleStatement.cbl +6 -0
  1019. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/TitleStatement.cbl.preprocessed +6 -0
  1020. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CblOpts.cbl +13 -0
  1021. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CblOpts.cbl.preprocessed +13 -0
  1022. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CblXoptsApost.cbl +6 -0
  1023. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CblXoptsApost.cbl.preprocessed +6 -0
  1024. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CompilerOptions.cbl +62 -0
  1025. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CompilerOptions.cbl.preprocessed +62 -0
  1026. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/EmptyLines.cbl +12 -0
  1027. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/EmptyLines.cbl.preprocessed +12 -0
  1028. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecCics.cbl +32 -0
  1029. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecCics.cbl.preprocessed +32 -0
  1030. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSql.cbl +17 -0
  1031. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSql.cbl.preprocessed +17 -0
  1032. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSqlIms.cbl +24 -0
  1033. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSqlIms.cbl.preprocessed +24 -0
  1034. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSqlMultiline.cbl +32 -0
  1035. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSqlMultiline.cbl.preprocessed +32 -0
  1036. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivision.cbl +15 -0
  1037. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivision.cbl.preprocessed +15 -0
  1038. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionInline.cbl +8 -0
  1039. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionInline.cbl.preprocessed +8 -0
  1040. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionInlineWithPadding.cbl +3 -0
  1041. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionInlineWithPadding.cbl.preprocessed +3 -0
  1042. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionMultiline.cbl +21 -0
  1043. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionMultiline.cbl.preprocessed +21 -0
  1044. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IfElseMoveStatement.cbl +13 -0
  1045. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IfElseMoveStatement.cbl.preprocessed +13 -0
  1046. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IfStatement.cbl +15 -0
  1047. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IfStatement.cbl.preprocessed +15 -0
  1048. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/InlineCommentNoWs.cbl +5 -0
  1049. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/InlineCommentNoWs.cbl.preprocessed +5 -0
  1050. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/LineContinuationWhitespace.cbl +8 -0
  1051. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/LineContinuationWhitespace.cbl.preprocessed +7 -0
  1052. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ProcessXoptsApost.cbl +6 -0
  1053. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ProcessXoptsApost.cbl.preprocessed +6 -0
  1054. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/Replace.cbl +8 -0
  1055. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/Replace.cbl.preprocessed +8 -0
  1056. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/Variable.cbl +7 -0
  1057. cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/Variable.cbl.preprocessed +7 -0
@@ -0,0 +1,223 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ # Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ # poetry.lock
109
+ # poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ # pdm.lock
116
+ # pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ # pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # Redis
135
+ *.rdb
136
+ *.aof
137
+ *.pid
138
+
139
+ # RabbitMQ
140
+ mnesia/
141
+ rabbitmq/
142
+ rabbitmq-data/
143
+
144
+ # ActiveMQ
145
+ activemq-data/
146
+
147
+ # SageMath parsed files
148
+ *.sage.py
149
+
150
+ # Environments
151
+ .env
152
+ .envrc
153
+ .venv
154
+ env/
155
+ venv/
156
+ ENV/
157
+ env.bak/
158
+ venv.bak/
159
+
160
+ # Spyder project settings
161
+ .spyderproject
162
+ .spyproject
163
+
164
+ # Rope project settings
165
+ .ropeproject
166
+
167
+ # mkdocs documentation
168
+ /site
169
+
170
+ # mypy
171
+ .mypy_cache/
172
+ .dmypy.json
173
+ dmypy.json
174
+
175
+ # Pyre type checker
176
+ .pyre/
177
+
178
+ # pytype static type analyzer
179
+ .pytype/
180
+
181
+ # Cython debug symbols
182
+ cython_debug/
183
+
184
+ # PyCharm
185
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
186
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
187
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
188
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
189
+ # .idea/
190
+
191
+ # Abstra
192
+ # Abstra is an AI-powered process automation framework.
193
+ # Ignore directories containing user credentials, local state, and settings.
194
+ # Learn more at https://abstra.io/docs
195
+ .abstra/
196
+
197
+ # Visual Studio Code
198
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
199
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
200
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
201
+ # you could uncomment the following to ignore the entire vscode folder
202
+ # .vscode/
203
+ # Temporary file for partial code execution
204
+ tempCodeRunnerFile.py
205
+
206
+ # Ruff stuff:
207
+ .ruff_cache/
208
+
209
+ # PyPI configuration file
210
+ .pypirc
211
+
212
+ # Marimo
213
+ marimo/_static/
214
+ marimo/_lsp/
215
+ __marimo__/
216
+
217
+ # Streamlit
218
+ .streamlit/secrets.toml
219
+
220
+ .tools/
221
+ .antlr/
222
+ .build/
223
+ .venv/