Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/sancarn/stdVBA
Browse files Browse the repository at this point in the history
  • Loading branch information
sancarn committed Feb 26, 2025
2 parents d4738ee + 8ab8383 commit 9beff64
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/enforce_crlf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Enforce CRLF action
uses: DecimalTurn/Enforce-CRLF@08706ea4cc4a3de32d8b3c769686355a22d69e84 #v1.1.2
uses: DecimalTurn/Enforce-CRLF@ec751ecfeb0e0cf51d19f295435c7a6ec10bac15 #v1.1.3
with:
extensions: .bas, .frm, .cls
do-checkout: true
Expand Down
86 changes: 86 additions & 0 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -5595,6 +5595,35 @@
"examples": [],
"remarks": []
},
{
"name": "addStepChangeHandler",
"type": "Function",
"constructor": true,
"isDefaultMember": false,
"protected": false,
"access": null,
"description": "Add a handler which is triggered at every step change",
"params": [
{
"name": "handler",
"type": "stdICallable<(stdFiber)=>void>",
"description": "Callback to run when an error occurs in the fiber",
"referenceType": "ByVal",
"paramArray": false,
"optional": false,
"defaultValue": null
}
],
"returns": {
"description": "A fiber procedure - A reference to the fiber the step has been added to, to allow chaining"
},
"deprecation": {
"status": false,
"message": ""
},
"examples": [],
"remarks": []
},
{
"name": "Resolve",
"type": "Sub",
Expand Down Expand Up @@ -5750,6 +5779,63 @@
"examples": [],
"remarks": []
},
{
"name": "StepName",
"type": "Property",
"constructor": true,
"isDefaultMember": false,
"protected": false,
"access": "ReadOnly",
"description": "Obtains the name of the current step in the fiber",
"params": [],
"returns": {
"description": "The name of the fiber step"
},
"deprecation": {
"status": false,
"message": ""
},
"examples": [],
"remarks": []
},
{
"name": "StepDuration",
"type": "Property",
"constructor": true,
"isDefaultMember": false,
"protected": false,
"access": "ReadOnly",
"description": "Obtains the duration of the fiber procedure",
"params": [],
"returns": {
"description": "The duration of the fiber procedure in seconds"
},
"deprecation": {
"status": false,
"message": ""
},
"examples": [],
"remarks": []
},
{
"name": "TotalDuration",
"type": "Property",
"constructor": true,
"isDefaultMember": false,
"protected": false,
"access": "ReadOnly",
"description": "Obtains the duration of the fibers entire runtime",
"params": [],
"returns": {
"description": "The duration of the fibers entire runtime in seconds"
},
"deprecation": {
"status": false,
"message": ""
},
"examples": [],
"remarks": []
},
{
"name": "isFinished",
"type": "Property",
Expand Down

0 comments on commit 9beff64

Please sign in to comment.