Skip to content

Commit

Permalink
feat: [cxx-parser] Add template_t
Browse files Browse the repository at this point in the history
  • Loading branch information
littleGnAl committed Nov 20, 2023
1 parent a16978a commit 2c44d63
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ struct AAA {
"is_const":false,
"kind":100,
"name":"int",
"source":"int"
"source":"int",
"template_arguments":[]
}
}
],
Expand Down
3 changes: 3 additions & 0 deletions cxx-parser/__tests__/unit_test/cxx_parser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ describe('cxx_parser', () => {
kind: 101,
name: 'Test',
source: 'Test *',
template_arguments: [],
},
},
],
Expand Down Expand Up @@ -137,6 +138,7 @@ describe('cxx_parser', () => {
kind: 101,
name: 'Test',
source: 'Test *',
template_arguments: [],
},
},
],
Expand Down Expand Up @@ -216,6 +218,7 @@ describe('cxx_parser', () => {
kind: 101,
name: 'Test',
source: 'Test *',
template_arguments: [],
},
},
],
Expand Down

0 comments on commit 2c44d63

Please sign in to comment.