Skip to content

Commit

Permalink
BL-424 #resolve
Browse files Browse the repository at this point in the history
BoxRunner action commands now for: compile, cftranspile, featureAudit
  • Loading branch information
lmajano committed Aug 9, 2024
1 parent 1c047ef commit d6b509e
Show file tree
Hide file tree
Showing 2 changed files with 201 additions and 131 deletions.
239 changes: 130 additions & 109 deletions .vscode/launch.json
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"
}
]
}
Loading

0 comments on commit d6b509e

Please sign in to comment.