File tree 5 files changed +22
-0
lines changed
5 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -262,6 +262,10 @@ private object ConvertClassAnnotation(ApexAnnotationSyntax node)
262
262
{
263
263
return ApexKeywords . Global ;
264
264
}
265
+ else if ( node . Identifier == "Virtual" )
266
+ {
267
+ return ApexKeywords . Virtual ;
268
+ }
265
269
else if ( node . Identifier == "WithSharing" )
266
270
{
267
271
return $ "{ ApexKeywords . With } { ApexKeywords . Sharing } ";
Original file line number Diff line number Diff line change @@ -215,6 +215,10 @@ protected override IAnnotatedSyntax ConvertModifiersAndAnnotations(IAnnotatedSyn
215
215
result . Annotations . Add ( new AnnotationSyntax ( "Global" ) ) ;
216
216
isGlobal = true ;
217
217
}
218
+ else if ( modifier == ApexKeywords . Virtual && ownerNode is ClassDeclarationSyntax )
219
+ {
220
+ result . Annotations . Add ( new AnnotationSyntax ( "Virtual" ) ) ;
221
+ }
218
222
else if ( modifier . StartsWith ( ApexKeywords . Without ) )
219
223
{
220
224
result . Annotations . Add ( new AnnotationSyntax ( "WithoutSharing" ) ) ;
Original file line number Diff line number Diff line change @@ -295,6 +295,7 @@ public void ApexClassAttributesAreConvertedToModifiers()
295
295
Check ( "[Global] public class X {}" , "global class X {}" ) ;
296
296
Check ( "[WithSharing] public class X {}" , "public with sharing class X {}" ) ;
297
297
Check ( "[WithoutSharing] public class X {}" , "public without sharing class X {}" ) ;
298
+ Check ( "[Virtual] public class X {}" , "public virtual class X {}" ) ;
298
299
}
299
300
300
301
[ Test ]
Original file line number Diff line number Diff line change @@ -922,6 +922,7 @@ public void UnsupportedModifiersGetConvertedIntoAttributes()
922
922
public global class TestClass {
923
923
private with sharing class Inner1 { }
924
924
public without sharing class Inner2 { }
925
+ public virtual class Inner3 { }
925
926
private testMethod void MyTest(final int x) { }
926
927
public webservice void MyService() { }
927
928
transient int TransientField = 0;
@@ -949,6 +950,11 @@ public class Inner2
949
950
{
950
951
}
951
952
953
+ [Virtual]
954
+ public class Inner3
955
+ {
956
+ }
957
+
952
958
[Test]
953
959
private void MyTest([Final] int x)
954
960
{
You can’t perform that action at this time.
0 commit comments