Skip to content

Commit

Permalink
nodeJs: fix type comparison bug. cannot use ref equality
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Giannini authored and Matthew Giannini committed Sep 20, 2024
1 parent 493d53b commit 1b17a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nodeJs/fan/ts/GenTsDecl.fan
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class GenTsDecl
private Bool includeSlot(CType type, CSlot slot)
{
// declared only slots, not inherited
if (slot.parent !== type) return false
if (slot.parent != type) return false

// skip @NoDoc
if (isNoDoc(slot)) return false
Expand Down

0 comments on commit 1b17a9a

Please sign in to comment.