Merge pull request #61226 from Chaosus/shader_fix_keyword_completion
This commit is contained in:
commit
126470caa1
@ -5379,6 +5379,11 @@ ShaderLanguage::Node *ShaderLanguage::_parse_expression(BlockNode *p_block, cons
|
||||
if (tk.type == TK_CURSOR) {
|
||||
//do nothing
|
||||
} else if (tk.type == TK_PERIOD) {
|
||||
#ifdef DEBUG_ENABLED
|
||||
uint32_t prev_keyword_completion_context = keyword_completion_context;
|
||||
keyword_completion_context = CF_UNSPECIFIED;
|
||||
#endif
|
||||
|
||||
DataType dt = expr->get_datatype();
|
||||
String st = expr->get_datatype_name();
|
||||
|
||||
@ -5734,6 +5739,10 @@ ShaderLanguage::Node *ShaderLanguage::_parse_expression(BlockNode *p_block, cons
|
||||
}
|
||||
expr = mn;
|
||||
|
||||
#ifdef DEBUG_ENABLED
|
||||
keyword_completion_context = prev_keyword_completion_context;
|
||||
#endif
|
||||
|
||||
//todo
|
||||
//member (period) has priority over any operator
|
||||
//creates a subindexing expression in place
|
||||
|
@ -503,7 +503,7 @@ public:
|
||||
BlockNode *parent_block = nullptr;
|
||||
|
||||
enum BlockType {
|
||||
BLOCK_TYPE_STANDART,
|
||||
BLOCK_TYPE_STANDARD,
|
||||
BLOCK_TYPE_FOR_INIT,
|
||||
BLOCK_TYPE_FOR_CONDITION,
|
||||
BLOCK_TYPE_FOR_EXPRESSION,
|
||||
@ -512,7 +512,7 @@ public:
|
||||
BLOCK_TYPE_DEFAULT,
|
||||
};
|
||||
|
||||
int block_type = BLOCK_TYPE_STANDART;
|
||||
int block_type = BLOCK_TYPE_STANDARD;
|
||||
SubClassTag block_tag = SubClassTag::TAG_GLOBAL;
|
||||
|
||||
struct Variable {
|
||||
|
Loading…
Reference in New Issue
Block a user