├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ └── bump-version.yml ├── .gitignore ├── .npmignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── LICENSE.txt ├── README.md ├── brainstorm.tldr ├── cobol.configuration.json ├── doc ├── formatter │ ├── evaluate-formatter.gif │ └── if-formatter.gif ├── highlight │ └── highlight.gif ├── intellisense │ └── loop-intellisense.gif ├── peek-definition.gif ├── suggestion │ ├── paragraph-suggestion.gif │ ├── snippet.gif │ └── variable-suggestion.gif └── variable │ ├── alphanumeric-var-declaration.gif │ ├── comma-numeric-var-declaration.gif │ ├── compute-var-declaration.gif │ └── display-var-declaration.gif ├── fileicons ├── cobol-icon-theme.json └── images │ └── cobol.svg ├── images ├── cbl.png ├── cobol.jpg ├── cobol.png ├── cobol.psd ├── cobol.svg └── sourceflow │ ├── flow-parser-dark.svg │ ├── flow-parser-light.svg │ ├── flow.svg │ ├── goto-icon-dark.svg │ ├── goto-icon-light.svg │ ├── perform-dark.svg │ └── perform-light.svg ├── package.json ├── snippets └── cobol.json ├── src ├── cobol │ ├── CobolCopy.ts │ ├── CobolRegexUtils.ts │ ├── ExpandedSourceCacheStatusBar.ts │ ├── ExpandedSourceManager.ts │ ├── ExpandedSourceStatusBar.ts │ ├── MoveInverter.ts │ ├── TabStopper.ts │ ├── colunas.ts │ ├── diagnostic │ │ ├── cobolDiagnostic.ts │ │ ├── cobolDiagnosticFilter.ts │ │ ├── cobolDiagnosticGetCopyHierarchyManager.ts │ │ ├── cobolDiagnosticParser.ts │ │ ├── cobolDiagnosticPreprocManager.ts │ │ ├── diagnostician.ts │ │ ├── textPosition.ts │ │ └── textRange.ts │ ├── elementsdisplayer │ │ ├── ElementInterface.ts │ │ ├── ElementsDisplayer.ts │ │ ├── ElementsDisplayerFactory.ts │ │ ├── class │ │ │ ├── ClassDisplayer.ts │ │ │ └── ClassElement.ts │ │ ├── copy │ │ │ ├── CopyDisplayer.ts │ │ │ └── CopyElement.ts │ │ └── variable │ │ │ ├── VariableDisplayer.ts │ │ │ └── VariableElement.ts │ ├── gerador-cobol.ts │ ├── parsercobol.ts │ ├── posicionamento.ts │ ├── rechdoc │ │ ├── CobolDoc.ts │ │ ├── CobolDocParser.ts │ │ ├── DocElement.ts │ │ └── ElementDocumentationExtractor.ts │ └── refactor │ │ └── CobolRefactor.ts ├── commons │ ├── CobolWordFinder.ts │ ├── FileUtils.ts │ ├── Log.ts │ ├── Process.ts │ ├── VariableUtils.ts │ ├── executor.ts │ ├── file.ts │ ├── genericexecutor.ts │ ├── path.ts │ └── rechposition.ts ├── decoration │ ├── CustomDecorator.ts │ ├── DocumentationDecorator.ts │ └── Parser.ts ├── dependencieInjection.ts ├── editor │ ├── PositionFinder.ts │ ├── SourceExpander.ts │ └── editor.ts ├── extension.ts ├── helpers │ └── configuration.ts ├── indent │ ├── indent.ts │ └── indentUtils.ts ├── lsp │ ├── actions │ │ ├── ActionInterface.ts │ │ ├── CobolActionFactory.ts │ │ ├── ConvertToCamelCaseAction.ts │ │ ├── FixClassCaseAction.ts │ │ ├── InsertStaticClauseAction.ts │ │ ├── RefactorParagraphAction.ts │ │ ├── RemoveParenthesesAction.ts │ │ ├── RemoveRemainingClauseAction.ts │ │ ├── RemoveStaticClauseAction.ts │ │ ├── RemoveVariableAction.ts │ │ ├── ReplaceCommaWithDotAction.ts │ │ ├── ReplaceZerosWithSpacesAction.ts │ │ └── subprogram │ │ │ ├── InsertSubprogramDeclarationAction.ts │ │ │ └── SubprogramUtils.ts │ ├── client.ts │ ├── commons │ │ ├── CompletionUtils.ts │ │ ├── RenamingUtils.ts │ │ └── SourceOfCompletions.ts │ ├── completion │ │ ├── AddCompletion.ts │ │ ├── AnyLengthCompletion.ts │ │ ├── CatchCompletion.ts │ │ ├── ClassCompletion.ts │ │ ├── CobolCompletionItemFactory.ts │ │ ├── CobolMethod.ts │ │ ├── CobolVariable.ts │ │ ├── CompletionConfig.ts │ │ ├── CompletionInterface.ts │ │ ├── DeclareCompletion.ts │ │ ├── DynamicJsonCompletion.ts │ │ ├── ElseCompletion.ts │ │ ├── EmptyCompletion.ts │ │ ├── EndCompletion.ts │ │ ├── EvaluateCompletion.ts │ │ ├── ExitCycleCompletion.ts │ │ ├── ExitParagraphCompletion.ts │ │ ├── ExitPerformCompletion.ts │ │ ├── FinallyCompletion.ts │ │ ├── FlagCompletion.ts │ │ ├── FromCompletion.ts │ │ ├── LinkageCompletion.ts │ │ ├── MethodArgsCompletion.ts │ │ ├── MethodIdCompletion.ts │ │ ├── MethodModifyersCompletion.ts │ │ ├── MoveCompletion.ts │ │ ├── ObjectReferenceCompletion.ts │ │ ├── ParagraphCompletion.ts │ │ ├── PerformCompletion.ts │ │ ├── PerformUntilExitCompletion.ts │ │ ├── PerformVaryingCompletion.ts │ │ ├── PictureCompletion.ts │ │ ├── ProcedureCompletion.ts │ │ ├── SetCompletion.ts │ │ ├── SubtractCompletion.ts │ │ ├── ToCompletion.ts │ │ ├── ToTrueCompletion.ts │ │ ├── TryCompletion.ts │ │ ├── TypedefClauseCompletion.ts │ │ ├── UsageCompletion.ts │ │ ├── ValueCompletion.ts │ │ ├── WhenCompletion.ts │ │ ├── WorkingStorageCompletion.ts │ │ ├── copy │ │ │ └── CopyUsageLocator.ts │ │ ├── method │ │ │ ├── CompletionTarget.ts │ │ │ ├── MethodCompletion.ts │ │ │ └── MethodCompletionUtils.ts │ │ ├── parser │ │ │ └── AssignerCommandParser.ts │ │ ├── typedef │ │ │ └── TypedefCompletion.ts │ │ └── variable │ │ │ ├── CommaDotInsertTextBuilder.ts │ │ │ ├── CommandSeparatorInsertTextBuilder.ts │ │ │ ├── ToTrueInsertTextBuilder.ts │ │ │ ├── VariableCompletion.ts │ │ │ ├── VariableCompletionFactory.ts │ │ │ ├── VariableInsertTextBuilder.ts │ │ │ └── VariableNameInsertTextBuilder.ts │ ├── declaration │ │ ├── CobolDeclarationFinder.ts │ │ ├── FindInterface.ts │ │ ├── MethodCallUtils.ts │ │ ├── MethodChainResolver.ts │ │ ├── MethodDeclarationFinder.ts │ │ ├── MethodPathUtils.ts │ │ ├── PackageFinder.ts │ │ └── PreprocDeclarationFinder.ts │ ├── fold │ │ ├── CopyFolding.ts │ │ ├── ElseFolding.ts │ │ ├── EvaluateFolding.ts │ │ ├── FoldStatusBar.ts │ │ ├── IfFolding.ts │ │ ├── ParagraphFolding.ts │ │ ├── PerformUntilFolding.ts │ │ ├── PerformWithTest.ts │ │ ├── VariableFolding.ts │ │ ├── WhenFolding.ts │ │ ├── cobolFoldFactory.ts │ │ └── cobolFoldInterface.ts │ ├── formatter │ │ ├── CatchFormatter.ts │ │ ├── CobolFormatter.ts │ │ ├── CommandSeparatorFormatter.ts │ │ ├── CommentaryFormatter.ts │ │ ├── ElseFormatter.ts │ │ ├── EvaluateFormatter.ts │ │ ├── FinallyFormatter.ts │ │ ├── FormatterInterface.ts │ │ ├── FormatterUtils.ts │ │ ├── IfFormatter.ts │ │ ├── PerformUntilExitFormatter.ts │ │ ├── PerformVaryingFormatter.ts │ │ ├── TryFormatter.ts │ │ └── WhenFormatter.ts │ ├── highlight │ │ ├── ConstantTestHighlight.ts │ │ ├── DefaultHighlight.ts │ │ ├── EvaluateHighlight.ts │ │ ├── HighlightFactory.ts │ │ ├── HighlightInterface.ts │ │ ├── IfHighlight.ts │ │ ├── PerformHighlight.ts │ │ └── tryHighlight.ts │ ├── outline │ │ ├── CobolDocumentSymbolProvider.ts │ │ ├── context │ │ │ ├── parentContext.ts │ │ │ └── parseContext.ts │ │ ├── dispatcher │ │ │ └── symbolDispatcher.ts │ │ └── parsers │ │ │ ├── WorkingStorageSectionParser.ts │ │ │ ├── copyParser.ts │ │ │ ├── dataDivisionParser.ts │ │ │ ├── declareVariableParser.ts │ │ │ ├── factoryParser.ts │ │ │ ├── linkageSectionParser.ts │ │ │ ├── methodParser.ts │ │ │ ├── objectParser.ts │ │ │ ├── paragraphParser.ts │ │ │ ├── procedureDivisionParser.ts │ │ │ ├── symbolParser.ts │ │ │ └── variableParser.ts │ ├── references │ │ └── CobolReferencesFinder.ts │ └── server.ts ├── sourceflow │ ├── treeView │ │ ├── nodes │ │ │ ├── NodeInterface.ts │ │ │ ├── commandNode.ts │ │ │ ├── elseNode.ts │ │ │ ├── ifNode.ts │ │ │ ├── methodNode copy.ts │ │ │ ├── paragraphNode.ts │ │ │ ├── performLoopNode.ts │ │ │ └── whenNode.ts │ │ └── providers │ │ │ └── FlowProvider.ts │ └── utils │ │ ├── cobolFlowAnalyzer.ts │ │ └── nodeType.ts └── test │ ├── TestFiles │ ├── PROCEDURE.CBL │ └── WORKING.CBL │ ├── cobol │ └── MoveInverter.test.ts │ ├── commons │ ├── CobolWordFinder.test.ts │ ├── file.test.ts │ └── scan.test.ts │ ├── index.ts │ └── lsp │ ├── commons │ └── CompletionUtils.test.ts │ ├── completion │ ├── CobolCompletionItemFactory.test.ts │ ├── CobolVariable.test.ts │ ├── ToCompletion.test.ts │ └── variable │ │ ├── CommaDotInsertTextBuilder.test.ts │ │ ├── CommandSeparatorInsertTextBuilder.test.ts │ │ ├── ToTrueInsertTextBuilder.test.ts │ │ ├── VariableCompletion.test.ts │ │ └── VariableNameInsertTextBuilder.test.ts │ ├── declaration │ └── MethodCallUtils.test.ts │ ├── formatter │ ├── ElseFormatter.test.ts │ └── PerformVaryingFormatter.test.ts │ └── highlight │ └── IfHighlight.test.ts ├── syntaxes └── COBOL.tmLanguage.json └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/bump-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/.github/workflows/bump-version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/.vscodeignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/README.md -------------------------------------------------------------------------------- /brainstorm.tldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/brainstorm.tldr -------------------------------------------------------------------------------- /cobol.configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/cobol.configuration.json -------------------------------------------------------------------------------- /doc/formatter/evaluate-formatter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/formatter/evaluate-formatter.gif -------------------------------------------------------------------------------- /doc/formatter/if-formatter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/formatter/if-formatter.gif -------------------------------------------------------------------------------- /doc/highlight/highlight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/highlight/highlight.gif -------------------------------------------------------------------------------- /doc/intellisense/loop-intellisense.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/intellisense/loop-intellisense.gif -------------------------------------------------------------------------------- /doc/peek-definition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/peek-definition.gif -------------------------------------------------------------------------------- /doc/suggestion/paragraph-suggestion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/suggestion/paragraph-suggestion.gif -------------------------------------------------------------------------------- /doc/suggestion/snippet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/suggestion/snippet.gif -------------------------------------------------------------------------------- /doc/suggestion/variable-suggestion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/suggestion/variable-suggestion.gif -------------------------------------------------------------------------------- /doc/variable/alphanumeric-var-declaration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/variable/alphanumeric-var-declaration.gif -------------------------------------------------------------------------------- /doc/variable/comma-numeric-var-declaration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/variable/comma-numeric-var-declaration.gif -------------------------------------------------------------------------------- /doc/variable/compute-var-declaration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/variable/compute-var-declaration.gif -------------------------------------------------------------------------------- /doc/variable/display-var-declaration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/doc/variable/display-var-declaration.gif -------------------------------------------------------------------------------- /fileicons/cobol-icon-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/fileicons/cobol-icon-theme.json -------------------------------------------------------------------------------- /fileicons/images/cobol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/fileicons/images/cobol.svg -------------------------------------------------------------------------------- /images/cbl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/cbl.png -------------------------------------------------------------------------------- /images/cobol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/cobol.jpg -------------------------------------------------------------------------------- /images/cobol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/cobol.png -------------------------------------------------------------------------------- /images/cobol.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/cobol.psd -------------------------------------------------------------------------------- /images/cobol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/cobol.svg -------------------------------------------------------------------------------- /images/sourceflow/flow-parser-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/sourceflow/flow-parser-dark.svg -------------------------------------------------------------------------------- /images/sourceflow/flow-parser-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/sourceflow/flow-parser-light.svg -------------------------------------------------------------------------------- /images/sourceflow/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/sourceflow/flow.svg -------------------------------------------------------------------------------- /images/sourceflow/goto-icon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/sourceflow/goto-icon-dark.svg -------------------------------------------------------------------------------- /images/sourceflow/goto-icon-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/sourceflow/goto-icon-light.svg -------------------------------------------------------------------------------- /images/sourceflow/perform-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/sourceflow/perform-dark.svg -------------------------------------------------------------------------------- /images/sourceflow/perform-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/images/sourceflow/perform-light.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/package.json -------------------------------------------------------------------------------- /snippets/cobol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/snippets/cobol.json -------------------------------------------------------------------------------- /src/cobol/CobolCopy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/CobolCopy.ts -------------------------------------------------------------------------------- /src/cobol/CobolRegexUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/CobolRegexUtils.ts -------------------------------------------------------------------------------- /src/cobol/ExpandedSourceCacheStatusBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/ExpandedSourceCacheStatusBar.ts -------------------------------------------------------------------------------- /src/cobol/ExpandedSourceManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/ExpandedSourceManager.ts -------------------------------------------------------------------------------- /src/cobol/ExpandedSourceStatusBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/ExpandedSourceStatusBar.ts -------------------------------------------------------------------------------- /src/cobol/MoveInverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/MoveInverter.ts -------------------------------------------------------------------------------- /src/cobol/TabStopper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/TabStopper.ts -------------------------------------------------------------------------------- /src/cobol/colunas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/colunas.ts -------------------------------------------------------------------------------- /src/cobol/diagnostic/cobolDiagnostic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/diagnostic/cobolDiagnostic.ts -------------------------------------------------------------------------------- /src/cobol/diagnostic/cobolDiagnosticFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/diagnostic/cobolDiagnosticFilter.ts -------------------------------------------------------------------------------- /src/cobol/diagnostic/cobolDiagnosticGetCopyHierarchyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/diagnostic/cobolDiagnosticGetCopyHierarchyManager.ts -------------------------------------------------------------------------------- /src/cobol/diagnostic/cobolDiagnosticParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/diagnostic/cobolDiagnosticParser.ts -------------------------------------------------------------------------------- /src/cobol/diagnostic/cobolDiagnosticPreprocManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/diagnostic/cobolDiagnosticPreprocManager.ts -------------------------------------------------------------------------------- /src/cobol/diagnostic/diagnostician.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/diagnostic/diagnostician.ts -------------------------------------------------------------------------------- /src/cobol/diagnostic/textPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/diagnostic/textPosition.ts -------------------------------------------------------------------------------- /src/cobol/diagnostic/textRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/diagnostic/textRange.ts -------------------------------------------------------------------------------- /src/cobol/elementsdisplayer/ElementInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/elementsdisplayer/ElementInterface.ts -------------------------------------------------------------------------------- /src/cobol/elementsdisplayer/ElementsDisplayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/elementsdisplayer/ElementsDisplayer.ts -------------------------------------------------------------------------------- /src/cobol/elementsdisplayer/ElementsDisplayerFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/elementsdisplayer/ElementsDisplayerFactory.ts -------------------------------------------------------------------------------- /src/cobol/elementsdisplayer/class/ClassDisplayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/elementsdisplayer/class/ClassDisplayer.ts -------------------------------------------------------------------------------- /src/cobol/elementsdisplayer/class/ClassElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/elementsdisplayer/class/ClassElement.ts -------------------------------------------------------------------------------- /src/cobol/elementsdisplayer/copy/CopyDisplayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/elementsdisplayer/copy/CopyDisplayer.ts -------------------------------------------------------------------------------- /src/cobol/elementsdisplayer/copy/CopyElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/elementsdisplayer/copy/CopyElement.ts -------------------------------------------------------------------------------- /src/cobol/elementsdisplayer/variable/VariableDisplayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/elementsdisplayer/variable/VariableDisplayer.ts -------------------------------------------------------------------------------- /src/cobol/elementsdisplayer/variable/VariableElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/elementsdisplayer/variable/VariableElement.ts -------------------------------------------------------------------------------- /src/cobol/gerador-cobol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/gerador-cobol.ts -------------------------------------------------------------------------------- /src/cobol/parsercobol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/parsercobol.ts -------------------------------------------------------------------------------- /src/cobol/posicionamento.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/posicionamento.ts -------------------------------------------------------------------------------- /src/cobol/rechdoc/CobolDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/rechdoc/CobolDoc.ts -------------------------------------------------------------------------------- /src/cobol/rechdoc/CobolDocParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/rechdoc/CobolDocParser.ts -------------------------------------------------------------------------------- /src/cobol/rechdoc/DocElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/rechdoc/DocElement.ts -------------------------------------------------------------------------------- /src/cobol/rechdoc/ElementDocumentationExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/rechdoc/ElementDocumentationExtractor.ts -------------------------------------------------------------------------------- /src/cobol/refactor/CobolRefactor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/cobol/refactor/CobolRefactor.ts -------------------------------------------------------------------------------- /src/commons/CobolWordFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/commons/CobolWordFinder.ts -------------------------------------------------------------------------------- /src/commons/FileUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/commons/FileUtils.ts -------------------------------------------------------------------------------- /src/commons/Log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/commons/Log.ts -------------------------------------------------------------------------------- /src/commons/Process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/commons/Process.ts -------------------------------------------------------------------------------- /src/commons/VariableUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/commons/VariableUtils.ts -------------------------------------------------------------------------------- /src/commons/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/commons/executor.ts -------------------------------------------------------------------------------- /src/commons/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/commons/file.ts -------------------------------------------------------------------------------- /src/commons/genericexecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/commons/genericexecutor.ts -------------------------------------------------------------------------------- /src/commons/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/commons/path.ts -------------------------------------------------------------------------------- /src/commons/rechposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/commons/rechposition.ts -------------------------------------------------------------------------------- /src/decoration/CustomDecorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/decoration/CustomDecorator.ts -------------------------------------------------------------------------------- /src/decoration/DocumentationDecorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/decoration/DocumentationDecorator.ts -------------------------------------------------------------------------------- /src/decoration/Parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/decoration/Parser.ts -------------------------------------------------------------------------------- /src/dependencieInjection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/dependencieInjection.ts -------------------------------------------------------------------------------- /src/editor/PositionFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/editor/PositionFinder.ts -------------------------------------------------------------------------------- /src/editor/SourceExpander.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/editor/SourceExpander.ts -------------------------------------------------------------------------------- /src/editor/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/editor/editor.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/helpers/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/helpers/configuration.ts -------------------------------------------------------------------------------- /src/indent/indent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/indent/indent.ts -------------------------------------------------------------------------------- /src/indent/indentUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/indent/indentUtils.ts -------------------------------------------------------------------------------- /src/lsp/actions/ActionInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/ActionInterface.ts -------------------------------------------------------------------------------- /src/lsp/actions/CobolActionFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/CobolActionFactory.ts -------------------------------------------------------------------------------- /src/lsp/actions/ConvertToCamelCaseAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/ConvertToCamelCaseAction.ts -------------------------------------------------------------------------------- /src/lsp/actions/FixClassCaseAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/FixClassCaseAction.ts -------------------------------------------------------------------------------- /src/lsp/actions/InsertStaticClauseAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/InsertStaticClauseAction.ts -------------------------------------------------------------------------------- /src/lsp/actions/RefactorParagraphAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/RefactorParagraphAction.ts -------------------------------------------------------------------------------- /src/lsp/actions/RemoveParenthesesAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/RemoveParenthesesAction.ts -------------------------------------------------------------------------------- /src/lsp/actions/RemoveRemainingClauseAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/RemoveRemainingClauseAction.ts -------------------------------------------------------------------------------- /src/lsp/actions/RemoveStaticClauseAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/RemoveStaticClauseAction.ts -------------------------------------------------------------------------------- /src/lsp/actions/RemoveVariableAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/RemoveVariableAction.ts -------------------------------------------------------------------------------- /src/lsp/actions/ReplaceCommaWithDotAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/ReplaceCommaWithDotAction.ts -------------------------------------------------------------------------------- /src/lsp/actions/ReplaceZerosWithSpacesAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/ReplaceZerosWithSpacesAction.ts -------------------------------------------------------------------------------- /src/lsp/actions/subprogram/InsertSubprogramDeclarationAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/subprogram/InsertSubprogramDeclarationAction.ts -------------------------------------------------------------------------------- /src/lsp/actions/subprogram/SubprogramUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/actions/subprogram/SubprogramUtils.ts -------------------------------------------------------------------------------- /src/lsp/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/client.ts -------------------------------------------------------------------------------- /src/lsp/commons/CompletionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/commons/CompletionUtils.ts -------------------------------------------------------------------------------- /src/lsp/commons/RenamingUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/commons/RenamingUtils.ts -------------------------------------------------------------------------------- /src/lsp/commons/SourceOfCompletions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/commons/SourceOfCompletions.ts -------------------------------------------------------------------------------- /src/lsp/completion/AddCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/AddCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/AnyLengthCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/AnyLengthCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/CatchCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/CatchCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/ClassCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/ClassCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/CobolCompletionItemFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/CobolCompletionItemFactory.ts -------------------------------------------------------------------------------- /src/lsp/completion/CobolMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/CobolMethod.ts -------------------------------------------------------------------------------- /src/lsp/completion/CobolVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/CobolVariable.ts -------------------------------------------------------------------------------- /src/lsp/completion/CompletionConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/CompletionConfig.ts -------------------------------------------------------------------------------- /src/lsp/completion/CompletionInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/CompletionInterface.ts -------------------------------------------------------------------------------- /src/lsp/completion/DeclareCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/DeclareCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/DynamicJsonCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/DynamicJsonCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/ElseCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/ElseCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/EmptyCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/EmptyCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/EndCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/EndCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/EvaluateCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/EvaluateCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/ExitCycleCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/ExitCycleCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/ExitParagraphCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/ExitParagraphCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/ExitPerformCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/ExitPerformCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/FinallyCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/FinallyCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/FlagCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/FlagCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/FromCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/FromCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/LinkageCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/LinkageCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/MethodArgsCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/MethodArgsCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/MethodIdCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/MethodIdCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/MethodModifyersCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/MethodModifyersCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/MoveCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/MoveCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/ObjectReferenceCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/ObjectReferenceCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/ParagraphCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/ParagraphCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/PerformCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/PerformCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/PerformUntilExitCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/PerformUntilExitCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/PerformVaryingCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/PerformVaryingCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/PictureCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/PictureCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/ProcedureCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/ProcedureCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/SetCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/SetCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/SubtractCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/SubtractCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/ToCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/ToCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/ToTrueCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/ToTrueCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/TryCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/TryCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/TypedefClauseCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/TypedefClauseCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/UsageCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/UsageCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/ValueCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/ValueCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/WhenCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/WhenCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/WorkingStorageCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/WorkingStorageCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/copy/CopyUsageLocator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/copy/CopyUsageLocator.ts -------------------------------------------------------------------------------- /src/lsp/completion/method/CompletionTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/method/CompletionTarget.ts -------------------------------------------------------------------------------- /src/lsp/completion/method/MethodCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/method/MethodCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/method/MethodCompletionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/method/MethodCompletionUtils.ts -------------------------------------------------------------------------------- /src/lsp/completion/parser/AssignerCommandParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/parser/AssignerCommandParser.ts -------------------------------------------------------------------------------- /src/lsp/completion/typedef/TypedefCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/typedef/TypedefCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/variable/CommaDotInsertTextBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/variable/CommaDotInsertTextBuilder.ts -------------------------------------------------------------------------------- /src/lsp/completion/variable/CommandSeparatorInsertTextBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/variable/CommandSeparatorInsertTextBuilder.ts -------------------------------------------------------------------------------- /src/lsp/completion/variable/ToTrueInsertTextBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/variable/ToTrueInsertTextBuilder.ts -------------------------------------------------------------------------------- /src/lsp/completion/variable/VariableCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/variable/VariableCompletion.ts -------------------------------------------------------------------------------- /src/lsp/completion/variable/VariableCompletionFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/variable/VariableCompletionFactory.ts -------------------------------------------------------------------------------- /src/lsp/completion/variable/VariableInsertTextBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/variable/VariableInsertTextBuilder.ts -------------------------------------------------------------------------------- /src/lsp/completion/variable/VariableNameInsertTextBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/completion/variable/VariableNameInsertTextBuilder.ts -------------------------------------------------------------------------------- /src/lsp/declaration/CobolDeclarationFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/declaration/CobolDeclarationFinder.ts -------------------------------------------------------------------------------- /src/lsp/declaration/FindInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/declaration/FindInterface.ts -------------------------------------------------------------------------------- /src/lsp/declaration/MethodCallUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/declaration/MethodCallUtils.ts -------------------------------------------------------------------------------- /src/lsp/declaration/MethodChainResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/declaration/MethodChainResolver.ts -------------------------------------------------------------------------------- /src/lsp/declaration/MethodDeclarationFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/declaration/MethodDeclarationFinder.ts -------------------------------------------------------------------------------- /src/lsp/declaration/MethodPathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/declaration/MethodPathUtils.ts -------------------------------------------------------------------------------- /src/lsp/declaration/PackageFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/declaration/PackageFinder.ts -------------------------------------------------------------------------------- /src/lsp/declaration/PreprocDeclarationFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/declaration/PreprocDeclarationFinder.ts -------------------------------------------------------------------------------- /src/lsp/fold/CopyFolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/CopyFolding.ts -------------------------------------------------------------------------------- /src/lsp/fold/ElseFolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/ElseFolding.ts -------------------------------------------------------------------------------- /src/lsp/fold/EvaluateFolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/EvaluateFolding.ts -------------------------------------------------------------------------------- /src/lsp/fold/FoldStatusBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/FoldStatusBar.ts -------------------------------------------------------------------------------- /src/lsp/fold/IfFolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/IfFolding.ts -------------------------------------------------------------------------------- /src/lsp/fold/ParagraphFolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/ParagraphFolding.ts -------------------------------------------------------------------------------- /src/lsp/fold/PerformUntilFolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/PerformUntilFolding.ts -------------------------------------------------------------------------------- /src/lsp/fold/PerformWithTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/PerformWithTest.ts -------------------------------------------------------------------------------- /src/lsp/fold/VariableFolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/VariableFolding.ts -------------------------------------------------------------------------------- /src/lsp/fold/WhenFolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/WhenFolding.ts -------------------------------------------------------------------------------- /src/lsp/fold/cobolFoldFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/cobolFoldFactory.ts -------------------------------------------------------------------------------- /src/lsp/fold/cobolFoldInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/fold/cobolFoldInterface.ts -------------------------------------------------------------------------------- /src/lsp/formatter/CatchFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/CatchFormatter.ts -------------------------------------------------------------------------------- /src/lsp/formatter/CobolFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/CobolFormatter.ts -------------------------------------------------------------------------------- /src/lsp/formatter/CommandSeparatorFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/CommandSeparatorFormatter.ts -------------------------------------------------------------------------------- /src/lsp/formatter/CommentaryFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/CommentaryFormatter.ts -------------------------------------------------------------------------------- /src/lsp/formatter/ElseFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/ElseFormatter.ts -------------------------------------------------------------------------------- /src/lsp/formatter/EvaluateFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/EvaluateFormatter.ts -------------------------------------------------------------------------------- /src/lsp/formatter/FinallyFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/FinallyFormatter.ts -------------------------------------------------------------------------------- /src/lsp/formatter/FormatterInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/FormatterInterface.ts -------------------------------------------------------------------------------- /src/lsp/formatter/FormatterUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/FormatterUtils.ts -------------------------------------------------------------------------------- /src/lsp/formatter/IfFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/IfFormatter.ts -------------------------------------------------------------------------------- /src/lsp/formatter/PerformUntilExitFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/PerformUntilExitFormatter.ts -------------------------------------------------------------------------------- /src/lsp/formatter/PerformVaryingFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/PerformVaryingFormatter.ts -------------------------------------------------------------------------------- /src/lsp/formatter/TryFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/TryFormatter.ts -------------------------------------------------------------------------------- /src/lsp/formatter/WhenFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/formatter/WhenFormatter.ts -------------------------------------------------------------------------------- /src/lsp/highlight/ConstantTestHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/highlight/ConstantTestHighlight.ts -------------------------------------------------------------------------------- /src/lsp/highlight/DefaultHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/highlight/DefaultHighlight.ts -------------------------------------------------------------------------------- /src/lsp/highlight/EvaluateHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/highlight/EvaluateHighlight.ts -------------------------------------------------------------------------------- /src/lsp/highlight/HighlightFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/highlight/HighlightFactory.ts -------------------------------------------------------------------------------- /src/lsp/highlight/HighlightInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/highlight/HighlightInterface.ts -------------------------------------------------------------------------------- /src/lsp/highlight/IfHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/highlight/IfHighlight.ts -------------------------------------------------------------------------------- /src/lsp/highlight/PerformHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/highlight/PerformHighlight.ts -------------------------------------------------------------------------------- /src/lsp/highlight/tryHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/highlight/tryHighlight.ts -------------------------------------------------------------------------------- /src/lsp/outline/CobolDocumentSymbolProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/CobolDocumentSymbolProvider.ts -------------------------------------------------------------------------------- /src/lsp/outline/context/parentContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/context/parentContext.ts -------------------------------------------------------------------------------- /src/lsp/outline/context/parseContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/context/parseContext.ts -------------------------------------------------------------------------------- /src/lsp/outline/dispatcher/symbolDispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/dispatcher/symbolDispatcher.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/WorkingStorageSectionParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/WorkingStorageSectionParser.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/copyParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/copyParser.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/dataDivisionParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/dataDivisionParser.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/declareVariableParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/declareVariableParser.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/factoryParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/factoryParser.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/linkageSectionParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/linkageSectionParser.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/methodParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/methodParser.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/objectParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/objectParser.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/paragraphParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/paragraphParser.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/procedureDivisionParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/procedureDivisionParser.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/symbolParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/symbolParser.ts -------------------------------------------------------------------------------- /src/lsp/outline/parsers/variableParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/outline/parsers/variableParser.ts -------------------------------------------------------------------------------- /src/lsp/references/CobolReferencesFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/references/CobolReferencesFinder.ts -------------------------------------------------------------------------------- /src/lsp/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/lsp/server.ts -------------------------------------------------------------------------------- /src/sourceflow/treeView/nodes/NodeInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/sourceflow/treeView/nodes/NodeInterface.ts -------------------------------------------------------------------------------- /src/sourceflow/treeView/nodes/commandNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/sourceflow/treeView/nodes/commandNode.ts -------------------------------------------------------------------------------- /src/sourceflow/treeView/nodes/elseNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/sourceflow/treeView/nodes/elseNode.ts -------------------------------------------------------------------------------- /src/sourceflow/treeView/nodes/ifNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/sourceflow/treeView/nodes/ifNode.ts -------------------------------------------------------------------------------- /src/sourceflow/treeView/nodes/methodNode copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/sourceflow/treeView/nodes/methodNode copy.ts -------------------------------------------------------------------------------- /src/sourceflow/treeView/nodes/paragraphNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/sourceflow/treeView/nodes/paragraphNode.ts -------------------------------------------------------------------------------- /src/sourceflow/treeView/nodes/performLoopNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/sourceflow/treeView/nodes/performLoopNode.ts -------------------------------------------------------------------------------- /src/sourceflow/treeView/nodes/whenNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/sourceflow/treeView/nodes/whenNode.ts -------------------------------------------------------------------------------- /src/sourceflow/treeView/providers/FlowProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/sourceflow/treeView/providers/FlowProvider.ts -------------------------------------------------------------------------------- /src/sourceflow/utils/cobolFlowAnalyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/sourceflow/utils/cobolFlowAnalyzer.ts -------------------------------------------------------------------------------- /src/sourceflow/utils/nodeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/sourceflow/utils/nodeType.ts -------------------------------------------------------------------------------- /src/test/TestFiles/PROCEDURE.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/TestFiles/PROCEDURE.CBL -------------------------------------------------------------------------------- /src/test/TestFiles/WORKING.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/TestFiles/WORKING.CBL -------------------------------------------------------------------------------- /src/test/cobol/MoveInverter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/cobol/MoveInverter.test.ts -------------------------------------------------------------------------------- /src/test/commons/CobolWordFinder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/commons/CobolWordFinder.test.ts -------------------------------------------------------------------------------- /src/test/commons/file.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/commons/file.test.ts -------------------------------------------------------------------------------- /src/test/commons/scan.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/commons/scan.test.ts -------------------------------------------------------------------------------- /src/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/index.ts -------------------------------------------------------------------------------- /src/test/lsp/commons/CompletionUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/commons/CompletionUtils.test.ts -------------------------------------------------------------------------------- /src/test/lsp/completion/CobolCompletionItemFactory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/completion/CobolCompletionItemFactory.test.ts -------------------------------------------------------------------------------- /src/test/lsp/completion/CobolVariable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/completion/CobolVariable.test.ts -------------------------------------------------------------------------------- /src/test/lsp/completion/ToCompletion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/completion/ToCompletion.test.ts -------------------------------------------------------------------------------- /src/test/lsp/completion/variable/CommaDotInsertTextBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/completion/variable/CommaDotInsertTextBuilder.test.ts -------------------------------------------------------------------------------- /src/test/lsp/completion/variable/CommandSeparatorInsertTextBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/completion/variable/CommandSeparatorInsertTextBuilder.test.ts -------------------------------------------------------------------------------- /src/test/lsp/completion/variable/ToTrueInsertTextBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/completion/variable/ToTrueInsertTextBuilder.test.ts -------------------------------------------------------------------------------- /src/test/lsp/completion/variable/VariableCompletion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/completion/variable/VariableCompletion.test.ts -------------------------------------------------------------------------------- /src/test/lsp/completion/variable/VariableNameInsertTextBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/completion/variable/VariableNameInsertTextBuilder.test.ts -------------------------------------------------------------------------------- /src/test/lsp/declaration/MethodCallUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/declaration/MethodCallUtils.test.ts -------------------------------------------------------------------------------- /src/test/lsp/formatter/ElseFormatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/formatter/ElseFormatter.test.ts -------------------------------------------------------------------------------- /src/test/lsp/formatter/PerformVaryingFormatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/formatter/PerformVaryingFormatter.test.ts -------------------------------------------------------------------------------- /src/test/lsp/highlight/IfHighlight.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/src/test/lsp/highlight/IfHighlight.test.ts -------------------------------------------------------------------------------- /syntaxes/COBOL.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/syntaxes/COBOL.tmLanguage.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RechInformatica/rech-editor-cobol/HEAD/tsconfig.json --------------------------------------------------------------------------------