| 974 | |
| 975 | |
| 976 | void SetDoomCompileEnvironment() |
| 977 | { |
| 978 | compileEnvironment.SpecialTypeCast = CustomTypeCast; |
| 979 | compileEnvironment.CheckForCustomAddition = CheckForCustomAddition; |
| 980 | compileEnvironment.CheckSpecialIdentifier = CheckForDefault; |
| 981 | compileEnvironment.CheckSpecialGlobalIdentifier = CheckForLineSpecial; |
| 982 | compileEnvironment.ResolveSpecialIdentifier = ResolveForDefault; |
| 983 | compileEnvironment.CheckSpecialMember = CheckForMemberDefault; |
| 984 | compileEnvironment.ResolveSpecialFunction = AJumpProcessing; |
| 985 | compileEnvironment.CheckCustomGlobalFunctions = ResolveGlobalCustomFunction; |
| 986 | compileEnvironment.CustomBuiltinNew = "BuiltinNewDoom"; |
| 987 | } |
| 988 | |
| 989 | |
| 990 | //========================================================================== |