@@ -319,62 +319,3 @@ void GodotJSScriptLanguageBase::thread_exit()
319319#endif
320320}
321321
322- // GodotJSScriptLanguage definitions
323-
324- GodotJSScriptLanguage * GodotJSScriptLanguage::singleton_ = nullptr ;
325-
326- void GodotJSScriptLanguage::get_recognized_extensions (List<String>* p_extensions) const
327- {
328- p_extensions->push_back (JSB_TYPESCRIPT_EXT);
329- }
330-
331- GodotJSScriptBase* GodotJSScriptLanguage::create_godotjsscript () const
332- {
333- return memnew (GodotJSScript);
334- }
335-
336- bool GodotJSScriptLanguage::handles_global_class_type (const String& p_type) const
337- {
338- return p_type == jsb_typename (GodotJSScript);
339- }
340-
341- String GodotJSScriptLanguage::get_name () const
342- {
343- return jsb_typename (GodotJSScript);
344- }
345-
346- String GodotJSScriptLanguage::get_type () const
347- {
348- return jsb_typename (GodotJSScript);
349- }
350-
351- // GodotJavascriptLanguage definition
352-
353- GodotJavascriptLanguage * GodotJavascriptLanguage::singleton_ = nullptr ;
354-
355- void GodotJavascriptLanguage::get_recognized_extensions (List<String>* p_extensions) const
356- {
357- p_extensions->push_back (JSB_JAVASCRIPT_EXT);
358- }
359-
360- GodotJSScriptBase* GodotJavascriptLanguage::create_godotjsscript () const
361- {
362- return memnew (GodotJavaScript);
363- }
364-
365-
366- bool GodotJavascriptLanguage::handles_global_class_type (const String& p_type) const
367- {
368- return p_type == jsb_typename (GodotJavaScript);
369- }
370-
371- String GodotJavascriptLanguage::get_name () const
372- {
373- return jsb_typename (GodotJavaScript);
374- }
375-
376- String GodotJavascriptLanguage::get_type () const
377- {
378- return jsb_typename (GodotJavaScript);
379- }
380-
0 commit comments