| 12345678910111213141516171819202122232425262728 |
- namespace ARMeilleure.CodeGen.Linking
- {
- /// <summary>
- /// Types of <see cref="Symbol"/>.
- /// </summary>
- enum SymbolType : byte
- {
- /// <summary>
- /// Refers to nothing, i.e no symbol.
- /// </summary>
- None,
- /// <summary>
- /// Refers to an entry in <see cref="Translation.Delegates"/>.
- /// </summary>
- DelegateTable,
- /// <summary>
- /// Refers to an entry in <see cref="Translation.Translator.FunctionTable"/>.
- /// </summary>
- FunctionTable,
- /// <summary>
- /// Refers to a special symbol which is handled by <see cref="Translation.PTC.Ptc.PatchCode"/>.
- /// </summary>
- Special
- }
- }
|