Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
},
finish(this: any) {
_internal_createNode(this.obj);
},
parser: {
DisplayName: {
finish(this: any) {
this.parent.obj.displayName = this.text;
}
},
References: references_parser
}
};
const state_ModelTableEntry = new ReaderState({ // ModelTableEntry
init(this: any) {
this._requiredModels = [];
},
parser: {
// xx "RequiredModel": null
},
finish(this: any) {
const modelUri = this.attrs.ModelUri; // //"http://opcfoundation.org/UA/"
const version = this.attrs.Version; // 1.04
const publicationDate = this.attrs.PublicationDate; // "2018-05-15T00:00:00Z" "
// optional,
const symbolicName = this.attrs.SymbolicName;
const accessRestrictions = this.attrs.AccessRestrictions;
},
finish: function () {
_internal_createNode(this.obj);
},
parser: {
"DisplayName": {
finish: function () {
this.parent.obj.displayName = this.text;
}
},
"References": references_parser
}
};
const state_ModelTableEntry = new ReaderState({ // ModelTableEntry
init: function() {
this._requiredModels = [];
},
parser: {
//xx "RequiredModel": null
},
finish: function () {
const modelUri = this.attrs.ModelUri; // //"http://opcfoundation.org/UA/"
const version = this.attrs.Version; // 1.04
const publicationDate = this.attrs.PublicationDate; //"2018-05-15T00:00:00Z" "
// optional,
const symbolicName = this.attrs.SymbolicName;
const accessRestrictions = this.attrs.AccessRestrictions;