-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add clang qualtype to methods' parameter's type #58
base: main
Are you sure you want to change the base?
feat: add clang qualtype to methods' parameter's type #58
Conversation
|
||
// dump_clang_ast_<file name>_<checksum>.json | ||
let clangAstJsonPath = path.join( | ||
buildDir, |
Check warning
Code scanning / CodeQL
Unsafe shell command constructed from library input Medium
library input
shell command
This path concatenation which depends on
library input
shell command
let args = ['-Xclang', '-ast-dump=json', '-fsyntax-only', '-std=c++11']; | ||
let _args = [...args, ...includeHeaderDirsArgs, parseFile].join(' '); | ||
|
||
let bashScript = `clang++ ${_args} > ${clangAstJsonPath}`; |
Check warning
Code scanning / CodeQL
Unsafe shell command constructed from library input Medium
library input
shell command
This string concatenation which depends on
library input
shell command
console.log(`Running command: \n${bashScript}`); | ||
|
||
try { | ||
execSync(bashScript, { |
Check warning
Code scanning / CodeQL
Shell command built from environment values Medium
absolute path
old environment (which could pass the test): Image: ubuntu-22.04
No description provided.