We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
code:
class Car { drive() { println("driving a car"); } } class Mazda <- Car {} let myCar = Mazda(); myCar.drive(); #{ driving a car }#
error:
/Users/nobu/WorkSpace/Nim/SLAP/src/main.nim(90) main /Users/nobu/WorkSpace/Nim/SLAP/src/main.nim(42) runFile /Users/nobu/WorkSpace/Nim/SLAP/src/main.nim(36) execute /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(515) interpret /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(397) eval /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(400) eval /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(27) eval /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(244) eval /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(60) :anonymous /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(419) executeBlock /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(397) eval /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(400) eval /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(27) eval /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(233) eval /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(27) eval /Users/nobu/WorkSpace/Nim/SLAP/src/interpreter.nim(285) eval /usr/local/Cellar/nim/1.6.2/nim/lib/pure/collections/tables.nim(246) [] /usr/local/Cellar/nim/1.6.2/nim/lib/pure/collections/tables.nim(236) raiseKeyError Error: unhandled exception: key not found [KeyError]
The text was updated successfully, but these errors were encountered:
(might be wrong) I think you are accessing a nim map and that key doesn't exists.
Sorry, something went wrong.
Yes, I know that. But it's too late for me (1:40 pm). So, maybe tomorrow. This is kind of a reminder for the future me.
Update the resolver to fix #43
c89e290
Merge pull request #45 from bichanna/fix-bug-#43
fecd713
Fix bug #43
No branches or pull requests
code:
error:
The text was updated successfully, but these errors were encountered: