Jurassic.Library.HiddenClassSchema.HiddenClassSchema C# (CSharp) Method

HiddenClassSchema() private method

Creates a new HiddenClassSchema instance from a modify or delete operation.
private HiddenClassSchema ( SchemaProperty>.Dictionary properties, int nextValueIndex ) : System
properties SchemaProperty>.Dictionary
nextValueIndex int
return System
        internal HiddenClassSchema(Dictionary<object, SchemaProperty> properties, int nextValueIndex)
        {
            this.properties = properties;
            this.addTransitions = null;
            this.deleteTransitions = null;
            this.modifyTransitions = null;
            this.nextValueIndex = nextValueIndex;
        }

Same methods

HiddenClassSchema::HiddenClassSchema ( SchemaProperty>.Dictionary properties, int nextValueIndex, HiddenClassSchema parent, TransitionInfo addPropertyTransitionInfo ) : System