Mercerenies / gdlisp

Lisp on the Godot platform
GNU General Public License v3.0
145 stars 1 forks source link

Name duplicates are not detected across normalization boundaries #125

Open Mercerenies opened 1 year ago

Mercerenies commented 1 year ago
(defn foo-bar () 1)
(defn foo_bar () 2)

This code will pass GDLisp but fail on the Godot side, since foo-bar and foo_bar normalize to the same function name.