-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check that quickjs.h parses without error when fed to a C++ compiler. Fixes: #608 Co-authored-by: Saúl Ibarra Corretgé <s@saghul.net>
- Loading branch information
1 parent
82607f4
commit 89883ae
Showing
4 changed files
with
104 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// note: file is not actually compiled, only checked for C++ syntax errors | ||
#include "quickjs.h" | ||
|
||
int main(void) | ||
{ | ||
JSRuntime *rt = JS_NewRuntime(); | ||
JSContext *ctx = JS_NewContext(rt); | ||
JS_FreeValue(ctx, JS_NAN); | ||
JS_FreeValue(ctx, JS_UNDEFINED); | ||
JS_FreeValue(ctx, JS_NewFloat64(ctx, 42)); | ||
// not a legal way of using JS_MKPTR but this is here | ||
// to have the compiler syntax-check its definition | ||
JS_FreeValue(ctx, JS_MKPTR(JS_TAG_UNINITIALIZED, 0)); | ||
JS_FreeContext(ctx); | ||
JS_FreeRuntime(rt); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters