1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-16 16:50:21 +02:00

handle "this" in ecmascript

* module/language/ecmascript/base.scm:
* module/language/ecmascript/compile-ghil.scm:
* module/language/ecmascript/impl.scm:
* module/language/ecmascript/parse.scm: Compile "method calls" in such a
  way that "this" gets propagated correctly.
This commit is contained in:
Andy Wingo 2009-02-20 13:21:09 +01:00
parent e80ce73d20
commit 785fb107ef
4 changed files with 27 additions and 4 deletions

View file

@ -23,6 +23,7 @@
#:use-module (oop goops)
#:export (*undefined* *this*
<js-object> *object-prototype*
js-prototype js-props js-prop-attrs js-value js-constructor js-class
pget prop-attrs prop-has-attr? pput has-property? pdel
object->string object->number object->value/string
@ -31,7 +32,7 @@
->primitive ->boolean ->number ->integer ->int32 ->uint32
->uint16 ->string ->object
call/this lambda/this define-js-method
call/this* call/this lambda/this define-js-method
new-object))
@ -82,8 +83,11 @@
(pput o p *undefined*)
#t))))
(define (call/this* this f)
(with-fluid* *this* this f))
(define-macro (call/this this f . args)
`(with-fluid* *this* ,this (lambda () (f . ,args))))
`(with-fluid* *this* ,this (lambda () (,f . ,args))))
(define-macro (lambda/this formals . body)
`(lambda ,formals (let ((this (fluid-ref *this*))) . ,body)))
(define-macro (define-js-method object name-and-args . body)