File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,10 @@ The LanguageService will not track any mutations for already-initialized variabl
105
105
106
106
## Changelog:
107
107
108
+ ** v1.0.34** :
109
+
110
+ - Identifiers for CallExpressions are now arrays of tokens.
111
+
108
112
** v1.0.33** :
109
113
110
114
- Added support for CallExpressions that are BinaryExpressions.
Original file line number Diff line number Diff line change @@ -69,8 +69,7 @@ export abstract class CallableFormatter implements ICallableFormatter {
69
69
}
70
70
71
71
else if ( isBinaryExpression ( exp ) ) {
72
- const value = this . valueableFormatter . format ( exp ) ;
73
- identifier = value . hasDoneFirstResolve ( ) ? value . resolved : value . resolve ( ) ;
72
+ identifier = this . valueableFormatter . format ( exp ) ;
74
73
}
75
74
76
75
if ( identifier == null ) {
You can’t perform that action at this time.
0 commit comments