2020-07-15 08:43:21 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-07-06 10:08:05 +02:00
<class name= "EditorSyntaxHighlighter" inherits= "SyntaxHighlighter" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2020-07-15 08:43:21 +02:00
<brief_description >
2023-04-30 16:26:09 +02:00
Base class for [SyntaxHighlighter] used by the [ScriptEditor].
2020-07-15 08:43:21 +02:00
</brief_description>
<description >
2023-04-30 16:26:09 +02:00
Base class that all [SyntaxHighlighter]s used by the [ScriptEditor] extend from.
2023-08-22 10:13:42 +02:00
Add a syntax highlighter to an individual script by calling [method ScriptEditorBase.add_syntax_highlighter]. To apply to all scripts on open, call [method ScriptEditor.register_syntax_highlighter].
2020-07-15 08:43:21 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2021-08-22 03:52:44 +02:00
<method name= "_get_name" qualifiers= "virtual const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2020-07-15 08:43:21 +02:00
<description >
2020-10-11 18:07:33 +02:00
Virtual method which can be overridden to return the syntax highlighter name.
2020-07-15 08:43:21 +02:00
</description>
</method>
2021-08-22 03:52:44 +02:00
<method name= "_get_supported_languages" qualifiers= "virtual const" >
2022-08-05 03:41:48 +02:00
<return type= "PackedStringArray" />
2020-07-15 08:43:21 +02:00
<description >
2020-10-11 18:07:33 +02:00
Virtual method which can be overridden to return the supported language names.
2020-07-15 08:43:21 +02:00
</description>
</method>
</methods>
</class>