Up to date
This page is up to date for Redot 4.3
.
If you still find outdated information, please create an issue.
ScriptLanguageExtensionΒΆ
Inherits: ScriptLanguage < Object
There is currently no description for this class. Please help us by contributing one!
MethodsΒΆ
void |
_add_global_constant(name: StringName, value: Variant) virtual |
void |
_add_named_global_constant(name: StringName, value: Variant) virtual |
_auto_indent_code(code: String, from_line: int, to_line: int) virtual const |
|
_can_inherit_from_file() virtual const |
|
_can_make_function() virtual const |
|
_complete_code(code: String, path: String, owner: Object) virtual const |
|
_create_script() virtual const |
|
_debug_get_current_stack_info() virtual |
|
_debug_get_error() virtual const |
|
_debug_get_globals(max_subitems: int, max_depth: int) virtual |
|
_debug_get_stack_level_count() virtual const |
|
_debug_get_stack_level_function(level: int) virtual const |
|
|
_debug_get_stack_level_instance(level: int) virtual |
_debug_get_stack_level_line(level: int) virtual const |
|
_debug_get_stack_level_locals(level: int, max_subitems: int, max_depth: int) virtual |
|
_debug_get_stack_level_members(level: int, max_subitems: int, max_depth: int) virtual |
|
_debug_get_stack_level_source(level: int) virtual const |
|
_debug_parse_stack_level_expression(level: int, expression: String, max_subitems: int, max_depth: int) virtual |
|
_find_function(function: String, code: String) virtual const |
|
void |
_finish() virtual |
void |
_frame() virtual |
_get_built_in_templates(object: StringName) virtual const |
|
_get_comment_delimiters() virtual const |
|
_get_doc_comment_delimiters() virtual const |
|
_get_extension() virtual const |
|
_get_global_class_name(path: String) virtual const |
|
_get_name() virtual const |
|
_get_public_annotations() virtual const |
|
_get_public_constants() virtual const |
|
_get_public_functions() virtual const |
|
_get_recognized_extensions() virtual const |
|
_get_reserved_words() virtual const |
|
_get_string_delimiters() virtual const |
|
_get_type() virtual const |
|
_handles_global_class_type(type: String) virtual const |
|
_has_named_classes() virtual const |
|
void |
_init() virtual |
_is_control_flow_keyword(keyword: String) virtual const |
|
_is_using_templates() virtual |
|
_lookup_code(code: String, symbol: String, path: String, owner: Object) virtual const |
|
_make_function(class_name: String, function_name: String, function_args: PackedStringArray) virtual const |
|
_make_template(template: String, class_name: String, base_class_name: String) virtual const |
|
_open_in_external_editor(script: Script, line: int, column: int) virtual |
|
_overrides_external_editor() virtual |
|
_preferred_file_name_casing() virtual const |
|
_profiling_get_accumulated_data(info_array: |
|
_profiling_get_frame_data(info_array: |
|
void |
_profiling_set_save_native_calls(enable: bool) virtual |
void |
_profiling_start() virtual |
void |
_profiling_stop() virtual |
void |
_reload_all_scripts() virtual |
void |
_reload_scripts(scripts: Array, soft_reload: bool) virtual |
void |
_reload_tool_script(script: Script, soft_reload: bool) virtual |
void |
_remove_named_global_constant(name: StringName) virtual |
_supports_builtin_mode() virtual const |
|
_supports_documentation() virtual const |
|
void |
_thread_enter() virtual |
void |
_thread_exit() virtual |
_validate(script: String, path: String, validate_functions: bool, validate_errors: bool, validate_warnings: bool, validate_safe_lines: bool) virtual const |
|
_validate_path(path: String) virtual const |
EnumerationsΒΆ
enum LookupResultType: π
LookupResultType LOOKUP_RESULT_SCRIPT_LOCATION = 0
There is currently no description for this enum. Please help us by contributing one!
LookupResultType LOOKUP_RESULT_CLASS = 1
There is currently no description for this enum. Please help us by contributing one!
LookupResultType LOOKUP_RESULT_CLASS_CONSTANT = 2
There is currently no description for this enum. Please help us by contributing one!
LookupResultType LOOKUP_RESULT_CLASS_PROPERTY = 3
There is currently no description for this enum. Please help us by contributing one!
LookupResultType LOOKUP_RESULT_CLASS_METHOD = 4
There is currently no description for this enum. Please help us by contributing one!
LookupResultType LOOKUP_RESULT_CLASS_SIGNAL = 5
There is currently no description for this enum. Please help us by contributing one!
LookupResultType LOOKUP_RESULT_CLASS_ENUM = 6
There is currently no description for this enum. Please help us by contributing one!
LookupResultType LOOKUP_RESULT_CLASS_TBD_GLOBALSCOPE = 7
There is currently no description for this enum. Please help us by contributing one!
LookupResultType LOOKUP_RESULT_CLASS_ANNOTATION = 8
There is currently no description for this enum. Please help us by contributing one!
LookupResultType LOOKUP_RESULT_MAX = 9
There is currently no description for this enum. Please help us by contributing one!
enum CodeCompletionLocation: π
CodeCompletionLocation LOCATION_LOCAL = 0
The option is local to the location of the code completion query - e.g. a local variable. Subsequent value of location represent options from the outer class, the exact value represent how far they are (in terms of inner classes).
CodeCompletionLocation LOCATION_PARENT_MASK = 256
The option is from the containing class or a parent class, relative to the location of the code completion query. Perform a bitwise OR with the class depth (e.g. 0
for the local class, 1
for the parent, 2
for the grandparent, etc.) to store the depth of an option in the class or a parent class.
CodeCompletionLocation LOCATION_OTHER_USER_CODE = 512
The option is from user code which is not local and not in a derived class (e.g. Autoload Singletons).
CodeCompletionLocation LOCATION_OTHER = 1024
The option is from other engine code, not covered by the other enum constants - e.g. built-in classes.
enum CodeCompletionKind: π
CodeCompletionKind CODE_COMPLETION_KIND_CLASS = 0
There is currently no description for this enum. Please help us by contributing one!
CodeCompletionKind CODE_COMPLETION_KIND_FUNCTION = 1
There is currently no description for this enum. Please help us by contributing one!
CodeCompletionKind CODE_COMPLETION_KIND_SIGNAL = 2
There is currently no description for this enum. Please help us by contributing one!
CodeCompletionKind CODE_COMPLETION_KIND_VARIABLE = 3
There is currently no description for this enum. Please help us by contributing one!
CodeCompletionKind CODE_COMPLETION_KIND_MEMBER = 4
There is currently no description for this enum. Please help us by contributing one!
CodeCompletionKind CODE_COMPLETION_KIND_ENUM = 5
There is currently no description for this enum. Please help us by contributing one!
CodeCompletionKind CODE_COMPLETION_KIND_CONSTANT = 6
There is currently no description for this enum. Please help us by contributing one!
CodeCompletionKind CODE_COMPLETION_KIND_NODE_PATH = 7
There is currently no description for this enum. Please help us by contributing one!
CodeCompletionKind CODE_COMPLETION_KIND_FILE_PATH = 8
There is currently no description for this enum. Please help us by contributing one!
CodeCompletionKind CODE_COMPLETION_KIND_PLAIN_TEXT = 9
There is currently no description for this enum. Please help us by contributing one!
CodeCompletionKind CODE_COMPLETION_KIND_MAX = 10
There is currently no description for this enum. Please help us by contributing one!
Method DescriptionsΒΆ
void _add_global_constant(name: StringName, value: Variant) virtual π
There is currently no description for this method. Please help us by contributing one!
void _add_named_global_constant(name: StringName, value: Variant) virtual π
There is currently no description for this method. Please help us by contributing one!
String _auto_indent_code(code: String, from_line: int, to_line: int) virtual const π
There is currently no description for this method. Please help us by contributing one!
bool _can_inherit_from_file() virtual const π
There is currently no description for this method. Please help us by contributing one!
bool _can_make_function() virtual const π
There is currently no description for this method. Please help us by contributing one!
Dictionary _complete_code(code: String, path: String, owner: Object) virtual const π
There is currently no description for this method. Please help us by contributing one!
Object _create_script() virtual const π
There is currently no description for this method. Please help us by contributing one!
Array[Dictionary] _debug_get_current_stack_info() virtual π
There is currently no description for this method. Please help us by contributing one!
String _debug_get_error() virtual const π
There is currently no description for this method. Please help us by contributing one!
Dictionary _debug_get_globals(max_subitems: int, max_depth: int) virtual π
There is currently no description for this method. Please help us by contributing one!
int _debug_get_stack_level_count() virtual const π
There is currently no description for this method. Please help us by contributing one!
String _debug_get_stack_level_function(level: int) virtual const π
There is currently no description for this method. Please help us by contributing one!
void*
_debug_get_stack_level_instance(level: int) virtual π
There is currently no description for this method. Please help us by contributing one!
int _debug_get_stack_level_line(level: int) virtual const π
There is currently no description for this method. Please help us by contributing one!
Dictionary _debug_get_stack_level_locals(level: int, max_subitems: int, max_depth: int) virtual π
There is currently no description for this method. Please help us by contributing one!
Dictionary _debug_get_stack_level_members(level: int, max_subitems: int, max_depth: int) virtual π
There is currently no description for this method. Please help us by contributing one!
String _debug_get_stack_level_source(level: int) virtual const π
Returns the source associated with a given debug stack position.
String _debug_parse_stack_level_expression(level: int, expression: String, max_subitems: int, max_depth: int) virtual π
There is currently no description for this method. Please help us by contributing one!
int _find_function(function: String, code: String) virtual const π
Returns the line where the function is defined in the code, or -1
if the function is not present.
void _finish() virtual π
There is currently no description for this method. Please help us by contributing one!
void _frame() virtual π
There is currently no description for this method. Please help us by contributing one!
Array[Dictionary] _get_built_in_templates(object: StringName) virtual const π
There is currently no description for this method. Please help us by contributing one!
PackedStringArray _get_comment_delimiters() virtual const π
There is currently no description for this method. Please help us by contributing one!
PackedStringArray _get_doc_comment_delimiters() virtual const π
There is currently no description for this method. Please help us by contributing one!
String _get_extension() virtual const π
There is currently no description for this method. Please help us by contributing one!
Dictionary _get_global_class_name(path: String) virtual const π
There is currently no description for this method. Please help us by contributing one!
String _get_name() virtual const π
There is currently no description for this method. Please help us by contributing one!
Array[Dictionary] _get_public_annotations() virtual const π
There is currently no description for this method. Please help us by contributing one!
Dictionary _get_public_constants() virtual const π
There is currently no description for this method. Please help us by contributing one!
Array[Dictionary] _get_public_functions() virtual const π
There is currently no description for this method. Please help us by contributing one!
PackedStringArray _get_recognized_extensions() virtual const π
There is currently no description for this method. Please help us by contributing one!
PackedStringArray _get_reserved_words() virtual const π
There is currently no description for this method. Please help us by contributing one!
PackedStringArray _get_string_delimiters() virtual const π
There is currently no description for this method. Please help us by contributing one!
String _get_type() virtual const π
There is currently no description for this method. Please help us by contributing one!
bool _handles_global_class_type(type: String) virtual const π
There is currently no description for this method. Please help us by contributing one!
bool _has_named_classes() virtual const π
Deprecated: This method is not called by the engine.
void _init() virtual π
There is currently no description for this method. Please help us by contributing one!
bool _is_control_flow_keyword(keyword: String) virtual const π
There is currently no description for this method. Please help us by contributing one!
bool _is_using_templates() virtual π
There is currently no description for this method. Please help us by contributing one!
Dictionary _lookup_code(code: String, symbol: String, path: String, owner: Object) virtual const π
There is currently no description for this method. Please help us by contributing one!
String _make_function(class_name: String, function_name: String, function_args: PackedStringArray) virtual const π
There is currently no description for this method. Please help us by contributing one!
Script _make_template(template: String, class_name: String, base_class_name: String) virtual const π
There is currently no description for this method. Please help us by contributing one!
Error _open_in_external_editor(script: Script, line: int, column: int) virtual π
There is currently no description for this method. Please help us by contributing one!
bool _overrides_external_editor() virtual π
There is currently no description for this method. Please help us by contributing one!
ScriptNameCasing _preferred_file_name_casing() virtual const π
There is currently no description for this method. Please help us by contributing one!
int _profiling_get_accumulated_data(info_array: ScriptLanguageExtensionProfilingInfo*
, info_max: int) virtual π
There is currently no description for this method. Please help us by contributing one!
int _profiling_get_frame_data(info_array: ScriptLanguageExtensionProfilingInfo*
, info_max: int) virtual π
There is currently no description for this method. Please help us by contributing one!
void _profiling_set_save_native_calls(enable: bool) virtual π
There is currently no description for this method. Please help us by contributing one!
void _profiling_start() virtual π
There is currently no description for this method. Please help us by contributing one!
void _profiling_stop() virtual π
There is currently no description for this method. Please help us by contributing one!
void _reload_all_scripts() virtual π
There is currently no description for this method. Please help us by contributing one!
void _reload_scripts(scripts: Array, soft_reload: bool) virtual π
There is currently no description for this method. Please help us by contributing one!
void _reload_tool_script(script: Script, soft_reload: bool) virtual π
There is currently no description for this method. Please help us by contributing one!
void _remove_named_global_constant(name: StringName) virtual π
There is currently no description for this method. Please help us by contributing one!
bool _supports_builtin_mode() virtual const π
There is currently no description for this method. Please help us by contributing one!
bool _supports_documentation() virtual const π
There is currently no description for this method. Please help us by contributing one!
void _thread_enter() virtual π
There is currently no description for this method. Please help us by contributing one!
void _thread_exit() virtual π
There is currently no description for this method. Please help us by contributing one!
Dictionary _validate(script: String, path: String, validate_functions: bool, validate_errors: bool, validate_warnings: bool, validate_safe_lines: bool) virtual const π
There is currently no description for this method. Please help us by contributing one!
String _validate_path(path: String) virtual const π
There is currently no description for this method. Please help us by contributing one!