[DEVELOPMENT ENVIRONMENT]

* BUG: Editor: Workaround an interpreter crash when analyzing an expression including the LAST keyword.


git-svn-id: svn://localhost/gambas/trunk@7947 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2016-10-30 13:13:05 +00:00
parent 9c38cfb657
commit c9085d0e27

View File

@ -3406,6 +3406,8 @@ Private Sub GetExpressionTypeWithEval(aSym As String[], aType As Integer[]) As S
sType = GetSymbolType("ME")
Else If aSym[I] = "SUPER" Then
sType = GetSymbolType("SUPER")
Else If aSym[I] = "LAST" Then
sType = "o"
Endif
Else If aType[I] = Highlight.Symbol Then