We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba59fb7 commit b17b94cCopy full SHA for b17b94c
1 file changed
src/prog_registry.ts
@@ -261,11 +261,11 @@ export class ProgramRegistry {
261
262
// TODO: move usage of above methods to use class methods instead of the standalone functions
263
264
- static async build_registrant_from_js(js_code: string, built_in = false): Promise<ProgramRegistrant> {
+ async build_registrant_from_js(js_code: string, built_in = false): Promise<ProgramRegistrant> {
265
return build_registrant_from_js(js_code, built_in);
266
}
267
268
- static async determine_program_name_from_js(js_code: string): Promise<string> {
+ async determine_program_name_from_js(js_code: string): Promise<string> {
269
return determine_program_name_from_js(js_code);
270
271
0 commit comments