Ver Fonte

Added missing keywords to documentation

HurryStarfish há 6 anos atrás
pai
commit
16eb4bc126
1 ficheiros alterados com 12 adições e 7 exclusões
  1. 12 7
      docs/src/Language/Identifiers.bbdoc

+ 12 - 7
docs/src/Language/Identifiers.bbdoc

@@ -13,28 +13,33 @@ Identifiers in BlitzMax are case-insensitive. This means that the identifiers @h
 
 The following identifiers are reserved for use by the BlitzMax language, and can not be used as general purpose identifiers:
 {{
-Strict Module ModuleInfo Framework
+Strict SuperStrict Module ModuleInfo Framework
 End Return Continue Exit Assert 
-Public Private
+Public Protected Private
 True False Pi Null Self Super
-Byte Short Int Long Float Double Object String
+Byte Short Int UInt Long ULong Size_T Float Double Object String
 Var Ptr VarPtr Chr Len Asc SizeOf Sgn Abs Min Max Mod
 Shl Shr Sar Not And Or
 New Release Delete
 Incbin IncbinPtr IncbinLen
-Include Import Extern EndExtern
+Include Import Extern EndExtern Export
 Function EndFunction
 Type EndType Extends
+Interface EndInterface Implements
+Struct EndStruct
 Method EndMethod
-Local Global Const Field
+Operator
+Local Global Const Field ReadOnly
 Abstract Final
+Where
 Rem EndRem
 If Then Else ElseIf EndIf
 For To Next Step EachIn
-While Wend
+While Wend EndWhile
 Repeat Until Forever
 Select Case Default EndSelect
-Try Catch EndTry Throw
+Try Catch Finally EndTry Throw
 Goto DefData ReadData RestoreData
+NoDebug
 Alias
 }}