Skip to content

Commit

Permalink
Update mps.js
Browse files Browse the repository at this point in the history
Recognize "Enum" and "EnumeratedList" stereotypes as enumerations per Stereotype.java. Full list:
```
    case "Enum":
    case "EnumeratedList":
    case "Enumeration":
    case "EnumExt":
```
  • Loading branch information
amiller-ims committed Jun 6, 2022
1 parent 62862e8 commit f33d955
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/1edtech/mps.js
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,8 @@ async function processClass(section, classModel) {
const title = section.getAttribute("title");
let wrapper;
switch (classModel.stereoType) {
case "Enum":
case "EnumeratedList":
case "Enumeration":
case "EnumExt":
case "Vocabulary":
Expand Down

0 comments on commit f33d955

Please sign in to comment.