Method
checkModel
(node: Model, accept: ValidationAcceptor)
Source from the content-addressed store, hash-verified
| 54 | constructor(protected readonly services: ZModelServices) {} |
| 55 | |
| 56 | checkModel(node: Model, accept: ValidationAcceptor): void { |
| 57 | new SchemaValidator(this.services.shared.workspace.LangiumDocuments).validate(node, accept); |
| 58 | } |
| 59 | |
| 60 | checkDataSource(node: DataSource, accept: ValidationAcceptor): void { |
| 61 | new DataSourceValidator().validate(node, accept); |
Callers
nothing calls this directly
Tested by
no test coverage detected