-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from ortus-boxlang/development
v1.0.0-Beta9
- Loading branch information
Showing
170 changed files
with
4,138 additions
and
1,523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,111 +1,132 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "java", | ||
"name": "FeatureAudit", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.compiler.FeatureAudit", | ||
"projectName": "boxlang" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "BXCompiler", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.compiler.BXCompiler", | ||
"projectName": "boxlang" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "CFTranspiler", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.compiler.CFTranspiler", | ||
"projectName": "boxlang" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "BoxLang Debugger", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.debugger.DebugMain", | ||
"projectName": "boxlang" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "Print AST", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.runtime.BoxRunner", | ||
"projectName": "boxlang", | ||
"args": [ | ||
"--printAST", | ||
"-c", | ||
"${input:boxlangScript}" | ||
] | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "BoxLang MiniServer", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.web.MiniServer", | ||
"projectName": "boxlang", | ||
"args": [ | ||
"--debug", | ||
"--webroot", | ||
"workbench/www" | ||
] | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "BoxRunner", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.runtime.BoxRunner", | ||
"projectName": "boxlang" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "CrazyFileTest", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.runtime.BoxRunner", | ||
"projectName": "boxlang", | ||
"args": [ | ||
"--debugger", | ||
"CrazyFileTest.cfs" | ||
] | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "Current File", | ||
"request": "launch", | ||
"mainClass": "${file}" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "BoxRunner Task", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.runtime.BoxRunner", | ||
"projectName": "boxlang", | ||
"args": [ | ||
"src/test/bx/Task.bx" | ||
] | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "Run Module", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.runtime.BoxRunner", | ||
"projectName": "boxlang", | ||
"args": [ | ||
"test" | ||
] | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"id": "boxlangScript", | ||
"description": "Enter text to see the AST JSON", | ||
"type": "promptString" | ||
} | ||
] | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "java", | ||
"name": "FeatureAudit", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.compiler.FeatureAudit", | ||
"projectName": "boxlang" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "BXCompiler", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.compiler.BXCompiler", | ||
"projectName": "boxlang" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "CFTranspiler", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.compiler.CFTranspiler", | ||
"projectName": "boxlang" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "BoxLang Debugger", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.debugger.DebugMain", | ||
"projectName": "boxlang" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "BoxRunner With Input", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.runtime.BoxRunner", | ||
"projectName": "boxlang", | ||
"args": [ | ||
"${input:actionCommand}", | ||
"${input:arg1}" | ||
] | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "Print AST", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.runtime.BoxRunner", | ||
"projectName": "boxlang", | ||
"args": [ | ||
"--printAST", | ||
"-c", | ||
"${input:boxlangScript}" | ||
] | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "BoxLang MiniServer", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.web.MiniServer", | ||
"projectName": "boxlang", | ||
"args": [ | ||
"--debug", | ||
"--webroot", | ||
"workbench/www" | ||
] | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "BoxRunner", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.runtime.BoxRunner", | ||
"projectName": "boxlang" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "CrazyFileTest", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.runtime.BoxRunner", | ||
"projectName": "boxlang", | ||
"args": [ | ||
"--debugger", | ||
"CrazyFileTest.cfs" | ||
] | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "Current File", | ||
"request": "launch", | ||
"mainClass": "${file}" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "BoxRunner Task", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.runtime.BoxRunner", | ||
"projectName": "boxlang", | ||
"args": [ | ||
"src/test/bx/Task.bx" | ||
] | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "Run Module", | ||
"request": "launch", | ||
"mainClass": "ortus.boxlang.runtime.BoxRunner", | ||
"projectName": "boxlang", | ||
"args": [ | ||
"test" | ||
] | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"id": "boxlangScript", | ||
"description": "Enter text to see the AST JSON", | ||
"type": "promptString" | ||
}, | ||
{ | ||
"id": "actionCommand", | ||
"description": "Enter the action command", | ||
"type": "promptString" | ||
}, | ||
{ | ||
"id": "arg1", | ||
"description": "Enter the action command arg1", | ||
"type": "promptString" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#Fri Jul 26 19:21:16 UTC 2024 | ||
#Fri Aug 02 15:59:15 UTC 2024 | ||
antlrVersion=4.13.1 | ||
jdkVersion=21 | ||
version=1.0.0-beta8 | ||
version=1.0.0-beta9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.