aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/language-web/src/main/java/tools/refinery/language/web/semantics/SemanticsIssuesResult.java
blob: 644bd17966f678828135ebf9bd97983fc7b1d723 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.language.web.semantics;

import org.eclipse.xtext.web.server.validation.ValidationResult;

import java.util.List;

public record SemanticsIssuesResult(List<ValidationResult.Issue> issues) implements SemanticsResult {
}