Skip to content

Commit

Permalink
Disable Emscripten property generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
tritao committed Sep 4, 2024
1 parent f27de3a commit 6beba4b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Generator/Generators/Emscripten/EmscriptenSources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@ public override void VisitClassConstructors(IEnumerable<Method> ctors)
}
}

public override bool VisitProperty(Property property)
{
return true;
}

public override bool VisitMethodDecl(Method method)
{
Indent();
Expand Down

0 comments on commit 6beba4b

Please sign in to comment.