-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor common code #2226
base: master
Are you sure you want to change the base?
Refactor common code #2226
Conversation
|
||
/// <summary> | ||
/// Custom attribute for declaring <see cref="OpcodeMetadata"/> metadata for individual opcodes | ||
/// </summary> | ||
[AttributeUsage(AttributeTargets.Field)] | ||
internal sealed class OpcodeMetadataAttribute : Attribute { | ||
public sealed class OpcodeMetadataAttribute : Attribute { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change was to allow referencing OpcodeMetadataAttribute
into this common assembly class from the compiler assembly. Let me know if there's a better approach.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
InspectCode found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
worried for a sec 😅 but it looks like goon broke the compilation 🫢 |
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
Puts code common among server, client, compiler into an OpenDreamCommon assembly
Puts code common among only server and compiler into a NoClient assembly (currently just for the MD5 call)
Removes compiler from server (#1490)
Deduplicates DreamValueType and DMValueType into just DMValueType. (these were different for some reason)