mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 08:48:55 +00:00
[xbase] make sure JvmElements get proxified (see https://bugs.eclipse.org/bugs/show_bug.cgi?id=398439)
This commit is contained in:
parent
6fcb204388
commit
29a9dcf61a
1 changed files with 9 additions and 1 deletions
|
@ -52,7 +52,15 @@ public class DerivedStateAwareResource extends LazyLinkingResource {
|
|||
}
|
||||
return super.getContents();
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected void clearInternalState() {
|
||||
if (fullyInitialized) {
|
||||
discardDerivedState();
|
||||
}
|
||||
super.clearInternalState();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void updateInternalState(IParseResult oldParseResult, IParseResult newParseResult) {
|
||||
if (fullyInitialized) {
|
||||
|
|
Loading…
Reference in a new issue