@@ -4144,7 +4144,7 @@ type internal SR private() =
41444144/// Used to associate, or bind, a name to a value or function.
41454145/// (Originally from ..\FSComp.txt:1372)
41464146static member keywordDescriptionLet () = ( GetStringFunc( " keywordDescriptionLet" , " ,,," ) )
4147- /// Used inasynchronous workflows to bind a name to the result of an asynchronous computation, or, in other computation expressions, used to bind a name toa result, which is ofthe computationtype .
4147+ /// Used in computation expressions to bind a name tothe result ofanother computationexpression .
41484148/// (Originally from ..\FSComp.txt:1373)
41494149static member keywordDescriptionLetBang () = ( GetStringFunc( " keywordDescriptionLetBang" , " ,,," ) )
41504150/// Used to branch by comparing a value to a pattern.
@@ -4195,10 +4195,10 @@ type internal SR private() =
41954195/// Used to indicate that a function is recursive.
41964196/// (Originally from ..\FSComp.txt:1389)
41974197static member keywordDescriptionRec () = ( GetStringFunc( " keywordDescriptionRec" , " ,,," ) )
4198- /// Used toindicate a valueto provide as the result ofa computation expression.
4198+ /// Used toprovide a valuefor the result ofthe containing computation expression.
41994199/// (Originally from ..\FSComp.txt:1390)
42004200static member keywordDescriptionReturn () = ( GetStringFunc( " keywordDescriptionReturn" , " ,,," ) )
4201- /// Used toindicate a computation expression that, when evaluated, provides the result of thecontaining computation expression.
4201+ /// Used toprovide avalue for the result of the containing computation expression, where that value itself comes from theresult another computation expression.
42024202/// (Originally from ..\FSComp.txt:1391)
42034203static member keywordDescriptionReturnBang () = ( GetStringFunc( " keywordDescriptionReturnBang" , " ,,," ) )
42044204/// Used in query expressions to specify what fields or columns to extract. Note that this is a contextual keyword, which means that it is not actually a reserved word and it only acts like a keyword in appropriate context.
@@ -4225,10 +4225,10 @@ type internal SR private() =
42254225/// Used to convert to a type that is higher in the inheritance chain.
42264226/// (Originally from ..\FSComp.txt:1399)
42274227static member keywordDescriptionUpcast () = ( GetStringFunc( " keywordDescriptionUpcast" , " ,,," ) )
4228- /// Used instead of let for values thatrequire Dispose to be called to free resources.
4228+ /// Used instead of let for values thatimplement IDisposable"
42294229/// (Originally from ..\FSComp.txt:1400)
42304230static member keywordDescriptionUse () = ( GetStringFunc( " keywordDescriptionUse" , " ,,," ) )
4231- /// Used instead of let! inasynchronous workflows and other computation expressions forvalues that require Dispose to be called to free resources .
4231+ /// Used instead of let! in computation expressions forcomputation expression results that implement IDisposable .
42324232/// (Originally from ..\FSComp.txt:1401)
42334233static member keywordDescriptionUseBang () = ( GetStringFunc( " keywordDescriptionUseBang" , " ,,," ) )
42344234/// Used in a signature to indicate a value, or in a type to declare a member, in limited situations.
@@ -4353,10 +4353,10 @@ type internal SR private() =
43534353static member chkNoSpanLikeValueFromExpression () = ( 3236 , GetStringFunc( " chkNoSpanLikeValueFromExpression" , " ,,," ) )
43544354/// Cannot take the address of the value returned from the expression. Assign the returned value to a let-bound value before taking the address.
43554355/// (Originally from ..\FSComp.txt:1442)
4356- static member tastCantTakeAddressOfExpression () = ( 3238 , GetStringFunc( " tastCantTakeAddressOfExpression" , " ,,," ) )
4357- /// This typeis notan attribute
4358- /// (Originally from ..\FSComp.txt:1442 )
4359- static member tcTypeDoesNotInheritAttribute () = ( 3238 , GetStringFunc( " tcTypeDoesNotInheritAttribute" , " ,,," ) )
4356+ static member tastCantTakeAddressOfExpression () = ( 3237 , GetStringFunc( " tastCantTakeAddressOfExpression" , " ,,," ) )
4357+ /// This typedoes notinherit Attribute, it will not work correctly with other .NET languages.
4358+ /// (Originally from ..\FSComp.txt:1443 )
4359+ static member tcTypeDoesNotInheritAttribute () = ( 3242 , GetStringFunc( " tcTypeDoesNotInheritAttribute" , " ,,," ) )
43604360
43614361/// Call this method once to validate that all known resources are valid; throws if not
43624362static member RunStartupValidation () =
@@ -5769,4 +5769,9 @@ type internal SR private() =
57695769 ignore( GetString( " tastValueMustBeLocal" ))
57705770 ignore( GetString( " tcIsReadOnlyNotStruct" ))
57715771 ignore( GetString( " chkStructsMayNotReturnAddressesOfContents" ))
5772+ ignore( GetString( " chkNoByrefLikeFunctionCall" ))
5773+ ignore( GetString( " chkNoSpanLikeVariable" ))
5774+ ignore( GetString( " chkNoSpanLikeValueFromExpression" ))
5775+ ignore( GetString( " tastCantTakeAddressOfExpression" ))
5776+ ignore( GetString( " tcTypeDoesNotInheritAttribute" ))
57725777()