Fix build for templates
This commit is contained in:
parent
f51b202566
commit
5ef64aae58
2 changed files with 6 additions and 0 deletions
|
@ -2525,6 +2525,8 @@ void GDScriptLanguage::auto_indent_code(String& p_code,int p_from_line,int p_to_
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef TOOLS_ENABLED
|
||||||
|
|
||||||
Error GDScriptLanguage::lookup_code(const String& p_code, const String& p_symbol,const String& p_base_path, Object*p_owner,LookupResult& r_result) {
|
Error GDScriptLanguage::lookup_code(const String& p_code, const String& p_symbol,const String& p_base_path, Object*p_owner,LookupResult& r_result) {
|
||||||
|
|
||||||
|
|
||||||
|
@ -2959,3 +2961,5 @@ Error GDScriptLanguage::lookup_code(const String& p_code, const String& p_symbol
|
||||||
|
|
||||||
return ERR_CANT_RESOLVE;
|
return ERR_CANT_RESOLVE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
@ -408,7 +408,9 @@ public:
|
||||||
virtual int find_function(const String& p_function,const String& p_code) const;
|
virtual int find_function(const String& p_function,const String& p_code) const;
|
||||||
virtual String make_function(const String& p_class,const String& p_name,const StringArray& p_args) const;
|
virtual String make_function(const String& p_class,const String& p_name,const StringArray& p_args) const;
|
||||||
virtual Error complete_code(const String& p_code, const String& p_base_path, Object*p_owner,List<String>* r_options,String& r_call_hint);
|
virtual Error complete_code(const String& p_code, const String& p_base_path, Object*p_owner,List<String>* r_options,String& r_call_hint);
|
||||||
|
#ifdef TOOLS_ENABLED
|
||||||
virtual Error lookup_code(const String& p_code, const String& p_symbol, const String& p_base_path, Object*p_owner, LookupResult& r_result);
|
virtual Error lookup_code(const String& p_code, const String& p_symbol, const String& p_base_path, Object*p_owner, LookupResult& r_result);
|
||||||
|
#endif
|
||||||
virtual void auto_indent_code(String& p_code,int p_from_line,int p_to_line) const;
|
virtual void auto_indent_code(String& p_code,int p_from_line,int p_to_line) const;
|
||||||
virtual void add_global_constant(const StringName& p_variable,const Variant& p_value);
|
virtual void add_global_constant(const StringName& p_variable,const Variant& p_value);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue