I am trying to create a statechart framework as a sparetime project.

CoffeeScript

Statechart.state "A", ->
  @state "B1", ->
    @state "C"
  @state "B2", ->

JavaScript

Statechart.state("A", function() {
  this.state("B1", function() {
    this.state("C");
  });
  this.state("B2", function() {
  });
});

I wonder if there is a way for the inner functions to be aware of the outer one, so that B1 and B2 know they are children of A and C knows it is a child of B1.

UPDATE: I used bind(). It worked great!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Use the fat arrow =>. It uses an implementation of Function.prototype.bind:

Statechart.state "A", ->
   @state "B1", =>
       @state "C"
   @state "B2", =>

In this code, @/this will always refer to the Statechart object.

link|improve this answer
feedback

You need to hold a reference to the value of 'this/@' inside the first function.

I would usually create a variable called 'self' as below:

Statechart.state "A", ->
   self = @
   @state "B1", ->
       self.state "C"
   @state "B2", ->
link|improve this answer
Sorry for not being specific. That is the API the users will use. The end result can't be altered. I wanna know how I could have the functions to be aware of the hierarchy behind the scenes. Someone told me to use bind(), I think that might work. – ajsie Nov 18 '11 at 16:42
1  
this from @Francisco Soto's answer looks like it could be relevant. – Adam Hutchinson Nov 18 '11 at 16:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.