You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: fcs/fcs-fable/FSStrings.fs
+23-2Lines changed: 23 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -242,6 +242,12 @@ let resources =
242
242
("Parser.TOKEN.EQUALS",
243
243
"symbol '='"
244
244
);
245
+
("Parser.TOKEN.GREATER.BAR.RBRACE",
246
+
"symbol '>|}'"
247
+
);
248
+
("Parser.TOKEN.RQUOTE.BAR.RBRACE",
249
+
"symbol '@>|}' or '@@>|}'"
250
+
);
245
251
("Parser.TOKEN.GREATER.BAR.RBRACK",
246
252
"symbol '>|]'"
247
253
);
@@ -914,8 +920,14 @@ let resources =
914
920
("Obsolete2",
915
921
". {0}"
916
922
);
917
-
("Experimental",
918
-
"{0}. This warning can be disabled using '--nowarn:57' or '#nowarn \"57\"'."
923
+
("Experimental1",
924
+
"This construct is experimental"
925
+
);
926
+
("Experimental2",
927
+
". {0}"
928
+
);
929
+
("Experimental3",
930
+
". This warning can be disabled using '--nowarn:57' or '#nowarn \"57\"'."
919
931
);
920
932
("PossibleUnverifiableCode",
921
933
"Uses of this construct may result in the generation of unverifiable .NET IL code. This warning can be disabled using '--nowarn:9' or '#nowarn \"9\"'."
@@ -1019,4 +1031,13 @@ let resources =
1019
1031
("Parser.TOKEN.WHILE.BANG",
1020
1032
"keyword 'while!'"
1021
1033
);
1034
+
("InvalidAttributeTargetForLanguageElement1",
1035
+
"This attribute cannot be applied to {0}. Valid targets are: {1}"
1036
+
);
1037
+
("InvalidAttributeTargetForLanguageElement2",
1038
+
"This attribute is not valid for use on this language element"
1039
+
);
1040
+
("NoConstructorsAvailableForType",
1041
+
"No constructors are available for the type '{0}'"
0 commit comments