1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Replace use of cpp with the fit-to-purpose c-pp to avoid cpp's C-centric/JS-unfriendly quirks.

FossilOrigin-Name: 49d70f071e918d5d095c807575bb7ce2b287a123261e789e938521b3b409429a
This commit is contained in:
stephan
2022-11-18 02:29:59 +00:00
parent c7c15d1b83
commit ee026c5479
6 changed files with 1573 additions and 48 deletions

View File

@ -29,9 +29,9 @@ sqlite3InitModuleState.debugModule('self.location =',self.location);
4) If none of the above apply, (prefix+path) is returned.
*/
Module['locateFile'] = function(path, prefix) {
#ifdef SQLITE_JS_ESM
//#if SQLITE_JS_ESM
return new URL(path, import.meta.url).href;
#else
//#else
'use strict';
let theFile;
const up = this.urlParams;
@ -51,7 +51,7 @@ Module['locateFile'] = function(path, prefix) {
"result =", theFile
);
return theFile;
#endif /* SQLITE_JS_EMS */
//#endif /* SQLITE_JS_EMS */
}.bind(sqlite3InitModuleState);
/**