#1420 Revert undefined name variable resolution

This commit is contained in:
Cohee 2023-12-01 11:51:10 +02:00
parent 778bca01f3
commit ca24e550a8
1 changed files with 0 additions and 4 deletions

View File

@ -95,10 +95,6 @@ function decrementGlobalVariable(name) {
* @returns {string} Variable value or the string literal
*/
export function resolveVariable(name) {
if (name === undefined) {
return '';
}
if (existsLocalVariable(name)) {
return getLocalVariable(name);
}