Skip to content

Commit d7c5c7c

Browse files
committed
Remove qjs namespace backwards compatibility
Fixes: #650
1 parent 43151dd commit d7c5c7c

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

quickjs.c

-10
Original file line numberDiff line numberDiff line change
@@ -26306,16 +26306,6 @@ static char *js_default_module_normalize_name(JSContext *ctx,
2630626306
int len;
2630726307

2630826308
if (name[0] != '.') {
26309-
/* Backwards compatibility for stdlib rename. */
26310-
static const char names[] = "qjs:bjson\0qjs:std\0qjs:os";
26311-
for (const char *p = names; p < endof(names); p += 1 + strlen(p)) {
26312-
if (!strcmp(name, p+4)) {
26313-
#ifndef NDEBUG
26314-
printf("WARN: Standard library modules should be prefixed with `qjs:`. Example: %s\n", p);
26315-
#endif
26316-
return js_strdup(ctx, p);
26317-
}
26318-
}
2631926309
/* if no initial dot, the module name is not modified */
2632026310
return js_strdup(ctx, name);
2632126311
}

0 commit comments

Comments
 (0)