Skip to content

Commit

Permalink
Updated FCS-Fable to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
ncave committed Apr 15, 2023
1 parent 0b02cb5 commit 87e823b
Show file tree
Hide file tree
Showing 114 changed files with 16,039 additions and 12,219 deletions.
9 changes: 8 additions & 1 deletion src/fcs-fable/codegen/FSComp.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1429,6 +1429,7 @@ type internal SR private() =
static member keywordDescriptionReturn() = (sprintf "Used to provide a value for the result of the containing computation expression." )
static member keywordDescriptionReturnBang() = (sprintf "Used to provide a value for the result of the containing computation expression, where that value itself comes from the result another computation expression." )
static member keywordDescriptionSelect() = (sprintf "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." )
static member keywordDescriptionSig() = (sprintf "Keyword reserved for ML-compatibility." )
static member keywordDescriptionStatic() = (sprintf "Used to indicate a method or property that can be called without an instance of a type, or a value member that is shared among all instances of a type." )
static member keywordDescriptionStruct() = (sprintf "Used to declare a structure type. Also used in generic parameter constraints." )
static member keywordDescriptionThen() = (sprintf "Used in conditional expressions. Also used to perform side effects after object construction." )
Expand Down Expand Up @@ -1543,12 +1544,13 @@ type internal SR private() =
static member featureCSharpExtensionAttributeNotRequired() = (sprintf "Allow implicit Extension attribute on declaring types, modules" )
static member featureErrorForNonVirtualMembersOverrides() = (sprintf "Raises errors for non-virtual members overrides" )
static member featureWarningWhenInliningMethodImplNoInlineMarkedFunction() = (sprintf "Raises warnings when 'let inline ... =' is used together with [<MethodImpl(MethodImplOptions.NoInlining)>] attribute. Function is not getting inlined." )
static member featureArithmeticInLiterals() = (sprintf "Allow arithmetic and logical operations in literals" )
static member featureArithmeticInLiterals() = (sprintf "Arithmetic and logical operations in literals, enum definitions and attributes" )
static member featureErrorReportingOnStaticClasses() = (sprintf "Error reporting on static classes" )
static member featureTryWithInSeqExpressions() = (sprintf "Support for try-with in sequence expressions" )
static member featureWarningWhenCopyAndUpdateRecordChangesAllFields() = (sprintf "Raises warnings when an copy-and-update record expression changes all fields of a record." )
static member featureStaticMembersInInterfaces() = (sprintf "Static members in interfaces" )
static member featureNonInlineLiteralsAsPrintfFormat() = (sprintf "String values marked as literals and IL constants as printf format" )
static member featureNestedCopyAndUpdate() = (sprintf "Nested record field copy-and-update" )
static member fsiInvalidDirective(a0 : System.String, a1 : System.String) = (3353, sprintf "Invalid directive '#%s %s'" a0 a1)
static member tcNotAFunctionButIndexerNamedIndexingNotYetEnabled(a0 : System.String, a1 : System.String) = (3354, sprintf "This value supports indexing, e.g. '%s.[index]'. The syntax '%s[index]' requires /langversion:preview. See https://aka.ms/fsharp-index-notation." a0 a1)
static member tcNotAFunctionButIndexerIndexingNotYetEnabled() = (3354, sprintf "This expression supports indexing, e.g. 'expr.[index]'. The syntax 'expr[index]' requires /langversion:preview. See https://aka.ms/fsharp-index-notation." )
Expand Down Expand Up @@ -1623,6 +1625,7 @@ type internal SR private() =
static member ilxGenUnknownDebugPoint(a0 : System.String, a1 : System.String) = (3514, sprintf "Unknown debug point '%s'. The available debug points are '%s'." a0 a1)
static member reprResumableCodeInvokeNotReduced(a0 : System.String) = (sprintf "A resumable code invocation at '%s' could not be reduced" a0)
static member reprResumableCodeContainsLetRec() = (sprintf "A 'let rec' occured in the resumable code specification" )
static member reprResumableCodeContainsConstrainedGenericLet() = (sprintf "A constrained generic construct occured in the resumable code specification" )
static member reprResumableCodeContainsDynamicResumeAtInBody() = (sprintf "A target label for __resumeAt was not statically determined. A __resumeAt with a non-static target label may only appear at the start of a resumable code method" )
static member reprResumableCodeContainsResumptionInTryFinally() = (sprintf "A try/finally may not contain resumption points" )
static member reprResumableCodeContainsResumptionInHandlerOrFilter() = (sprintf "The 'with' block of a try/with may not contain resumption points" )
Expand Down Expand Up @@ -1664,3 +1667,7 @@ type internal SR private() =
static member typrelNeverRefinedAwayFromTop() = (3559, sprintf "A type has been implicitly inferred as 'obj', which may be unintended. Consider adding explicit type annotations. You can disable this warning by using '#nowarn \"3559\"' or '--nowarn:3559'." )
static member tcCopyAndUpdateRecordChangesAllFields(a0 : System.String) = (3560, sprintf "This copy-and-update record expression changes all fields of record type '%s'. Consider using the record construction syntax instead." a0)
static member chkAutoOpenAttributeInTypeAbbrev() = (3561, sprintf "FSharp.Core.AutoOpenAttribute should not be aliased." )
static member parsUnexpectedEndOfFileElif() = (3562, sprintf "Unexpected end of input in 'else if' or 'elif' branch of conditional expression. Expected 'elif <expr> then <expr>' or 'else if <expr> then <expr>'." )
static member lexInvalidIdentifier() = (3563, sprintf "This is not a valid identifier" )
static member parsMissingUnionCaseName() = (3564, sprintf "Missing union case name" )
static member parsExpectingType() = (3565, sprintf "Expecting type" )
Loading

0 comments on commit 87e823b

Please sign in to comment.