Skip to content

Commit

Permalink
Add value for No_Wrap to meta tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Akirathan committed Nov 5, 2024
1 parent dee9abe commit cd3e04b
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,15 @@ public List<Value> problemBehaviors() {
return collect;
}

public List<Value> noWrap() {
var collect = new ArrayList<Value>();
if (languages.contains(Language.ENSO)) {
var prelude = "import Standard.Base.Data.Vector.No_Wrap";
collect.add(v(null, prelude, "No_Wrap.Value").type());
}
return collect;
}

public List<Value> errors() {
var collect = new ArrayList<Value>();
if (languages.contains(Language.ENSO)) {
Expand Down

0 comments on commit cd3e04b

Please sign in to comment.