File tree Expand file tree Collapse file tree 12 files changed +223
-0
lines changed Expand file tree Collapse file tree 12 files changed +223
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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...
Original file line number Diff line number Diff line change
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...
Original file line number Diff line number Diff line change
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...
Original file line number Diff line number Diff line change
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 />
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
1
+ ---
2
+ cbapicategory : []
3
+
4
+ ---
5
+ # knowledge
6
+ <CBAPICategory />
7
+
8
+ Comming soon...
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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 />
Original file line number Diff line number Diff line change
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...
Original file line number Diff line number Diff line change
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...
Original file line number Diff line number Diff line change
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...
You can’t perform that action at this time.
0 commit comments