Tagged Questions

0
votes
2answers
330 views

Flash AS3: Getting this error: Access of undefined property - basic scope help needed :(

I'm still used to the AS2 style of all code on 1 frame, I'm trying to code AS3 in class files and I'm having a problem with a basic package setup. Scope issues are killing me with …
2
votes
2answers
61 views

How can I convert a LazySeq of Characters to a String in Clojure?

Let's say I have a LazySeq of java.lang.Character like (\b \ \! \/ \b \ \% \1 \9 \/ \. \i \% \$ \i \space \^@) How can I convert this to a String? I've tried the obvious (Strin …
2
votes
2answers
327 views

How do I make Binding respect DependencyProperty value coercion?

I have a control with a DependencyProperty with a CoerceValueCallback. This property is bound to a property on a model object. When setting the control property to a value that ca …
0
votes
4answers
149 views

C++ user-defined conversion operators without classes?

In C++ is it possible to define conversion operators which are not class members? I know how to do that for regular operators (such as +), but not for conversion operators. Here i …
3
votes
2answers
126 views

Casting vs. coercion in Python

In the Python documentation and on mailing lists I see that values are sometimes "cast", and sometimes "coerced". What is the difference?
2
votes
1answer
377 views

Can I use map coercion in groovy to mock a class with a constructor that has parameters?

Java example classes under test public class Sample { public void printPie() { System.out.println("Pie."); } } public class SampleCont { String _PIE; pub …
11
votes
12answers
355 views

How to encourage implementation of TDD?

In a consulting company where the general thought of TDD and automated testing as a whole is appreciated by the programmers but thought of as "been there, done that, doesn't work" …
2
votes
2answers
149 views

Nested Class Coercion Fail Between CFC and Flex

I have two AS3 classes, A and B. Class A contains an ArrayCollection that will hold multiple instances of class B. In ColdFusion, I have matching CFCs, with same-named variables …
1
vote
3answers
162 views

How does JavaScript treat the ++ operator?

JavaScript does funky automatic conversions with objects: var o = {toString: function() {return "40"; }}; print(o + o); print((o+1)+o); print((o*2) + (+o)); will print: 4040 40 …
0
votes
5answers
901 views

Coercing template class with operator T* when passing as T* argument of a function template

Assume I have a function template like this: template<class T> inline void doStuff(T* arr) { // stuff that needs to use sizeof(T) } Then in another .h filee I have a tem …