Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm translating some code from js to coffeescript:

I got an issue with the compiler for an object property containing a dash character:

If I do this:

params = 
  fill: 'white'
  stroke: '#fff'
  'stroke-width': 2
  'text-anchor': y_label_anchor

I get a weird compiler error without any line number saying: Error: cannot have an implicit value in an implicit object.

If I do this:

 params = 
   fill: 'white'
   stroke: '#fff'
   stroke-width: 2
   text-anchor: y_label_anchor

I get Parse error on line 1234: Unexpected '-'.

I totally get that Coffescript doesn't want to mess with dashes in property names. The thing is, I still have to figure out a way to convert this object so I can pass it to a library function in javascript.


Anybody knows a way I can create this object in Coffeescript?

Thank you

share|improve this question
3  
As seen here the first version works fine. Maybe the problem is somewhere else in your code. – David Weldon Nov 8 '12 at 20:50
Thank you... nice utility. I thought that was the problem because that was my last change, but obviously the first version is good. – jfabre Nov 8 '12 at 20:54
Are you sure you don't have something like o = k: v, x somewhere? – mu is too short Nov 8 '12 at 21:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.