Skip to content

Commit f422371

Browse files
committed
Added support for the virtual Apex class modifier (converted to the Virtual attribute).
1 parent bf18695 commit f422371

File tree

5 files changed

+22
-0
lines changed

5 files changed

+22
-0
lines changed

.editorconfig

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# EditorConfig: http://EditorConfig.org
2+
# VS extension: https://visualstudiogallery.msdn.microsoft.com/c8bccfe2-650c-4b42-bc5c-845e21f96328
3+
4+
# tab indentation
5+
[*.cs]
6+
indent_style = space
7+
indent_size = 4

ApexParser/Visitors/ApexSyntaxBuilder.cs

+4
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,10 @@ private object ConvertClassAnnotation(ApexAnnotationSyntax node)
262262
{
263263
return ApexKeywords.Global;
264264
}
265+
else if (node.Identifier == "Virtual")
266+
{
267+
return ApexKeywords.Virtual;
268+
}
265269
else if (node.Identifier == "WithSharing")
266270
{
267271
return $"{ApexKeywords.With} {ApexKeywords.Sharing}";

ApexParser/Visitors/CSharpCodeGenerator.cs

+4
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,10 @@ protected override IAnnotatedSyntax ConvertModifiersAndAnnotations(IAnnotatedSyn
215215
result.Annotations.Add(new AnnotationSyntax("Global"));
216216
isGlobal = true;
217217
}
218+
else if (modifier == ApexKeywords.Virtual && ownerNode is ClassDeclarationSyntax)
219+
{
220+
result.Annotations.Add(new AnnotationSyntax("Virtual"));
221+
}
218222
else if (modifier.StartsWith(ApexKeywords.Without))
219223
{
220224
result.Annotations.Add(new AnnotationSyntax("WithoutSharing"));

ApexParserTest/Visitors/ApexSyntaxBuilderTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ public void ApexClassAttributesAreConvertedToModifiers()
295295
Check("[Global] public class X {}", "global class X {}");
296296
Check("[WithSharing] public class X {}", "public with sharing class X {}");
297297
Check("[WithoutSharing] public class X {}", "public without sharing class X {}");
298+
Check("[Virtual] public class X {}", "public virtual class X {}");
298299
}
299300

300301
[Test]

ApexParserTest/Visitors/CSharpGeneratorTests.cs

+6
Original file line numberDiff line numberDiff line change
@@ -922,6 +922,7 @@ public void UnsupportedModifiersGetConvertedIntoAttributes()
922922
public global class TestClass {
923923
private with sharing class Inner1 { }
924924
public without sharing class Inner2 { }
925+
public virtual class Inner3 { }
925926
private testMethod void MyTest(final int x) { }
926927
public webservice void MyService() { }
927928
transient int TransientField = 0;
@@ -949,6 +950,11 @@ public class Inner2
949950
{
950951
}
951952
953+
[Virtual]
954+
public class Inner3
955+
{
956+
}
957+
952958
[Test]
953959
private void MyTest([Final] int x)
954960
{

0 commit comments

Comments
 (0)