diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2020-04-10 23:49:23 -0500 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2020-04-10 23:49:23 -0500 |
| commit | 894193eb43b81267f83bc722204d33df28478f79 (patch) | |
| tree | daf15d4de33e71ed0a81403a79f400242fa6d359 | |
| parent | f64fbb67b11ed6e48bf1585d14c1fded3c173944 (diff) | |
| download | nimterop-894193eb43b81267f83bc722204d33df28478f79.tar.gz nimterop-894193eb43b81267f83bc722204d33df28478f79.zip | |
Fix type override issue
| -rw-r--r-- | nimterop/grammar.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nimterop/grammar.nim b/nimterop/grammar.nim index 2e6b585..8e1d290 100644 --- a/nimterop/grammar.nim +++ b/nimterop/grammar.nim @@ -178,7 +178,7 @@ proc initGrammar(): Grammar = var i = 0 - typ = nimState.getIdentifier(nimState.data[i].val, nskType).getType() + typ = nimState.getIdentifier(nimState.data[i].val, nskType, "Parent").getType() name = "" nname = "" tptr = "" |
