Skip to content

Commit 6f24830

Browse files
committed
updated
1 parent b9ac339 commit 6f24830

File tree

12 files changed

+223
-0
lines changed

12 files changed

+223
-0
lines changed

docs/api/codeparsers/_category_.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"label": "Codeparsers",
3+
"position": 2.5,
4+
"collapsible": true,
5+
"collapsed": true,
6+
"className": "red",
7+
"link": {
8+
"type": "doc",
9+
"id": "api/codeparsers/index"
10+
}
11+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: getAstTreeInFile
3+
cbbaseinfo:
4+
description: Generates an Abstract Syntax Tree (AST) for a given file.
5+
cbparameters:
6+
parameters:
7+
- name: file
8+
typeName: any
9+
description: The file to generate an AST for.
10+
- name: className
11+
typeName: any
12+
description: The name of the class to focus the AST generation on.
13+
returns:
14+
signatureTypeName: void
15+
description: ' '
16+
typeArgs: []
17+
data:
18+
name: getAstTreeInFile
19+
category: codeparsers
20+
link: getAstTreeInFile.md
21+
---
22+
<CBBaseInfo/>
23+
<CBParameters/>
24+
25+
### Status
26+
27+
Comming soon...
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: getClassesInFile
3+
cbbaseinfo:
4+
description: Retrieves the classes in a given file.
5+
cbparameters:
6+
parameters:
7+
- name: file
8+
typeName: any
9+
description: The file to parse for classes.
10+
returns:
11+
signatureTypeName: void
12+
description: ' '
13+
typeArgs: []
14+
data:
15+
name: getClassesInFile
16+
category: codeparsers
17+
link: getClassesInFile.md
18+
---
19+
<CBBaseInfo/>
20+
<CBParameters/>
21+
22+
### Status
23+
24+
Comming soon...
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: getFunctionsinClass
3+
cbbaseinfo:
4+
description: Retrieves the functions in a given class within a file.
5+
cbparameters:
6+
parameters:
7+
- name: file
8+
typeName: any
9+
description: The file containing the class.
10+
- name: className
11+
typeName: any
12+
description: The name of the class to parse for functions.
13+
returns:
14+
signatureTypeName: void
15+
description: ' '
16+
typeArgs: []
17+
data:
18+
name: getFunctionsinClass
19+
category: codeparsers
20+
link: getFunctionsinClass.md
21+
---
22+
<CBBaseInfo/>
23+
<CBParameters/>
24+
25+
### Status
26+
27+
Comming soon...

docs/api/codeparsers/index.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
cbapicategory:
3+
- name: getAstTreeInFile
4+
link: /docs/api/codeparsers/getAstTreeInFile
5+
description: Generates an Abstract Syntax Tree (AST) for a given file.
6+
- name: getClassesInFile
7+
link: /docs/api/codeparsers/getClassesInFile
8+
description: Retrieves the classes in a given file.
9+
- name: getFunctionsinClass
10+
link: /docs/api/codeparsers/getFunctionsinClass
11+
description: Retrieves the functions in a given class within a file.
12+
13+
---
14+
# codeparsers
15+
<CBAPICategory />

docs/api/knowledge/_category_.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"label": "Knowledge",
3+
"position": 2.5,
4+
"collapsible": true,
5+
"collapsed": true,
6+
"className": "red",
7+
"link": {
8+
"type": "doc",
9+
"id": "api/knowledge/index"
10+
}
11+
}

docs/api/knowledge/index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
cbapicategory: []
3+
4+
---
5+
# knowledge
6+
<CBAPICategory />
7+
8+
Comming soon...
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"label": "Outputparsers",
3+
"position": 2.5,
4+
"collapsible": true,
5+
"collapsed": true,
6+
"className": "red",
7+
"link": {
8+
"type": "doc",
9+
"id": "api/outputparsers/index"
10+
}
11+
}

docs/api/outputparsers/index.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
cbapicategory:
3+
- name: init
4+
link: /docs/api/outputparsers/init
5+
description: |-
6+
Initializes the output parser module.
7+
Currently, this function does not perform any operations.
8+
- name: parseErrors
9+
link: /docs/api/outputparsers/parseErrors
10+
description: Parses the given output and returns all the error messages.
11+
- name: parseWarnings
12+
link: /docs/api/outputparsers/parseWarnings
13+
description: Parses the given output and returns all the warning messages.
14+
15+
---
16+
# outputparsers
17+
<CBAPICategory />

docs/api/outputparsers/init.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: init
3+
cbbaseinfo:
4+
description: |-
5+
Initializes the output parser module.
6+
Currently, this function does not perform any operations.
7+
cbparameters:
8+
parameters:
9+
- name: output
10+
typeName: any
11+
description: The output to be initialized.
12+
returns:
13+
signatureTypeName: void
14+
description: ' '
15+
typeArgs: []
16+
data:
17+
name: init
18+
category: outputparsers
19+
link: init.md
20+
---
21+
<CBBaseInfo/>
22+
<CBParameters/>
23+
24+
### Status
25+
26+
Comming soon...

docs/api/outputparsers/parseErrors.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: parseErrors
3+
cbbaseinfo:
4+
description: Parses the given output and returns all the error messages.
5+
cbparameters:
6+
parameters:
7+
- name: output
8+
typeName: any
9+
description: The output to parse for error messages.
10+
returns:
11+
description: An array of error messages.
12+
typeArgs: []
13+
data:
14+
name: parseErrors
15+
category: outputparsers
16+
link: parseErrors.md
17+
---
18+
<CBBaseInfo/>
19+
<CBParameters/>
20+
21+
### Status
22+
23+
Comming soon...
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: parseWarnings
3+
cbbaseinfo:
4+
description: Parses the given output and returns all the warning messages.
5+
cbparameters:
6+
parameters:
7+
- name: output
8+
typeName: any
9+
description: The output to parse for warning messages.
10+
returns:
11+
description: An array of warning messages.
12+
typeArgs: []
13+
data:
14+
name: parseWarnings
15+
category: outputparsers
16+
link: parseWarnings.md
17+
---
18+
<CBBaseInfo/>
19+
<CBParameters/>
20+
21+
### Status
22+
23+
Comming soon...

0 commit comments

Comments
 (0)