File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed
csharp/ql/src/semmle/code/csharp/frameworks/system/web Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,19 @@ class SystemWebWebPagesWebPageExecutingBaseClass extends Class {
1919 }
2020}
2121
22- /**
23- * This class describes any class that derives from System.Web.WebPages.WebPageExecutingBase
24- */
22+ /** A class that derives from `System.Web.WebPages.WebPageExecutingBase`. */
2523class WebPageClass extends Class {
26- WebPageClass ( ) {
27- this .getBaseClass * ( ) instanceof SystemWebWebPagesWebPageExecutingBaseClass
28- }
29-
30- Method getWriteLiteralMethod ( ) {
24+ WebPageClass ( ) {
25+ this .getBaseClass * ( ) instanceof SystemWebWebPagesWebPageExecutingBaseClass
26+ }
27+
28+ /** Gets the `WriteLiteral` method. */
29+ Method getWriteLiteralMethod ( ) {
3130 result = getAMethod ( "WriteLiteral" )
32- }
33-
34- Method getWriteLiteralToMethod ( ) {
31+ }
32+
33+ /** Gets the `WriteLiteralTo` method. */
34+ Method getWriteLiteralToMethod ( ) {
3535 result = getAMethod ( "WriteLiteralTo" )
36- }
37- }
36+ }
37+ }
You can’t perform that action at this time.
0 commit comments