Scheme access to object members is broken

Issue #36 resolved
Doug Blank created an issue

This used to work, now fails. Related to me trying to use GetMember in Scheme.cs. I'll try to localize change, and revert.

(define test
   (lambda ()
     (using "Graphics")
     (define win (Graphics.Window "Hello1"))
     (define line (Graphics.Line (Graphics.Point 0 0)
                                 (Graphics.Point 100 100)))
     (line.draw win)
     (line.rotate 10)))
(test)

Comments (5)

  1. Keith O'Hara

    This fails for me:

    Running '/home/keithohara/Untitled.ss'... Traceback (most recent call last): System.Exception: invalid member of Graphics+Line: 'draw'

  2. Log in to comment