File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Rubberduck.Parsing/Symbols/DeclarationLoaders Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ public IReadOnlyList<Declaration> Load()
32
32
Grammar . Tokens . Hex ,
33
33
Grammar . Tokens . Oct ,
34
34
Grammar . Tokens . Str ,
35
+ Grammar . Tokens . StrConv ,
35
36
Grammar . Tokens . CurDir ,
36
37
Grammar . Tokens . Command ,
37
38
Grammar . Tokens . Environ ,
@@ -177,6 +178,7 @@ private List<FunctionDeclaration> FunctionAliasesWithoutParameters()
177
178
HexFunction ( ) ,
178
179
OctFunction ( ) ,
179
180
StrFunction ( ) ,
181
+ StrConvFunction ( ) ,
180
182
CurDirFunction ( ) ,
181
183
CommandFunction ( ) ,
182
184
EnvironFunction ( ) ,
@@ -270,6 +272,24 @@ private FunctionDeclaration StrFunction()
270
272
new Attributes ( ) ) ;
271
273
}
272
274
275
+ private FunctionDeclaration StrConvFunction ( )
276
+ {
277
+ return new FunctionDeclaration (
278
+ new QualifiedMemberName ( _stringsModule . QualifiedName . QualifiedModuleName , "StrConv" ) ,
279
+ _stringsModule ,
280
+ _stringsModule ,
281
+ "Variant" ,
282
+ null ,
283
+ string . Empty ,
284
+ Accessibility . Global ,
285
+ null ,
286
+ new Selection ( ) ,
287
+ false ,
288
+ true ,
289
+ new List < IAnnotation > ( ) ,
290
+ new Attributes ( ) ) ;
291
+ }
292
+
273
293
private FunctionDeclaration CurDirFunction ( )
274
294
{
275
295
return new FunctionDeclaration (
You can’t perform that action at this time.
0 commit comments