Commit 1f3fe6df authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Remove hardcoded merge of static, inheritable, autodetected.

Leftovers from old times.
parent b38fb65a
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -92,13 +92,6 @@ module JsDuck
      h[:name] = merge_name(docs, code)
      h[:id] = JsDuck::Class.member_id(h)

      # Copy :static and :inheritable flags from code if present
      h[:static] = true if code[:static]
      h[:inheritable] = true if code[:inheritable]

      # Remember auto-detection info
      h[:autodetected] = code[:autodetected] if code[:autodetected]

      h
    end