#1057 Editing as in editor results in package name moving: fixed

This commit is contained in:
honfika@gmail.com
2015-10-10 15:03:28 +02:00
parent 18e039519f
commit b733666fcf

View File

@@ -2308,7 +2308,7 @@ public class ActionScript3Parser {
expected(s, lexer.yyline(), SymbolType.DOT);
s = lex();
expected(s, lexer.yyline(), SymbolGroup.IDENTIFIER);
name.add(s.value.toString());
name = name.add(s.value.toString());
s = lex();
}