This file contains hidden or 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
| import { join } from "path"; | |
| import { parseArgs } from "util"; | |
| const { values } = parseArgs({ | |
| args: Bun.argv, | |
| options: { | |
| folder: { | |
| type: "string", | |
| }, | |
| }, |
This file contains hidden or 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
| DFG ASSERTION FAILED: Edge verification error: D@64->Check:Untyped:D@63 was expected to have type BytecodeTop but has type Int52Any (51539607552) | |
| /webkit/Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h(187) : void JSC::DFG::AbstractInterpreter<JSC::DFG::InPlaceAbstractState>::verifyEdge(Node *, Edge) [AbstractStateType = JSC::DFG::InPlaceAbstra | |
| ctState] | |
| While handling node D@64 |
This file contains hidden or 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
| #ifdef __APPLE__ | |
| #include <GLUT/freeglut.h> | |
| #else | |
| #include <GL/freeglut.h> | |
| #endif | |
| // INSTRUCTIONS: | |
| // Depends on freeglut, can be installed on arch with $ sudo pacman -S freeglut | |
| // May also depend on libglvnd, can be installed with $ sudo pacman -S libglvnd | |
| // $ gcc main.c -lGL -lGLU -lglut && ./a.out |