Nested alternative quote delimiters

Qkxy

Member²
Hi,
I found that syntax highlighting not working well with nested alternative quote delimiters:

Code:
BEGIN
    do_exec(q'{
        BEGIN
            something(q'[
                some text
            ]');
        END;
    }');
END;

Will display this:

BEGIN
do_exec(q'{
BEGIN
something(q'[
some text
]'
);
END;
}
');
END;
/



I think this is the correct highlight:

BEGIN
do_exec(q'{
BEGIN
something(q'[
some text
]');
END;
}'
);
END;
/



Version: 9.0.0.1601
OS: Win XP x86
 
Could you add something about "Syntax Highlighting" to the subject? When reading the subject currently you'd assume some more serious problem with "Nested alternative quote delimiters".
 
Back
Top