@@ -294,9 +294,9 @@ private IBoundExpression ResolveLExpressionIsDictionaryAccessExpression(Dictiona
294294 private IBoundExpression ResolveDefaultMember ( string asTypeName , Declaration asTypeDeclaration , ArgumentList argumentList , ParserRuleContext expression , Declaration parent , int defaultMemberResolutionRecursionDepth , RecursiveDefaultMemberAccessExpression containedExpression )
295295 {
296296 /*
297- The declared type of < l-expression> is Object or Variant, and < argument-list> contains no
297+ The declared type of ' l-expression' is Object or Variant, and ' argument-list' contains no
298298 named arguments. In this case, the index expression is classified as an unbound member with
299- a declared type of Variant, referencing < l-expression> with no member name.
299+ a declared type of Variant, referencing ' l-expression' with no member name.
300300 */
301301 if ( Tokens . Variant . Equals ( asTypeName , StringComparison . InvariantCultureIgnoreCase )
302302 && ! argumentList . HasNamedArguments )
@@ -314,7 +314,7 @@ private IBoundExpression ResolveDefaultMember(string asTypeName, Declaration asT
314314 }
315315
316316 /*
317- The declared type of < l-expression> is a specific class, which has a public default Property
317+ The declared type of ' l-expression' is a specific class, which has a public default Property
318318 Get, Property Let, function or subroutine, and one of the following is true:
319319 */
320320 if ( asTypeDeclaration is ClassModuleDeclaration classModule
@@ -325,7 +325,7 @@ private IBoundExpression ResolveDefaultMember(string asTypeName, Declaration asT
325325 var defaultMemberClassification = DefaultMemberExpressionClassification ( defaultMember ) ;
326326
327327 /*
328- This default member’s parameter list is compatible with < argument-list> . In this case, the
328+ This default member’s parameter list is compatible with ' argument-list' . In this case, the
329329 index expression references this default member and takes on its classification and
330330 declared type.
331331
@@ -340,8 +340,8 @@ declared type.
340340
341341 /**
342342 This default member can accept no parameters. In this case, the static analysis restarts
343- recursively, as if this default member was specified instead for < l-expression> with the
344- same < argument-list> .
343+ recursively, as if this default member was specified instead for ' l-expression' with the
344+ same ' argument-list' .
345345 */
346346 if ( parameters . All ( parameter => parameter . IsOptional )
347347 && DEFAULT_MEMBER_RECURSION_LIMIT >= defaultMemberResolutionRecursionDepth )
0 commit comments