-
I just now installed CFUnit, and am running into the same --/-- issue. I have altered the path to use / in CFEclipse, but it's still not working for me. Anyone have anything else for me to try?.
2009-06-25 16:17:33 UTC in CFUnit
-
Hello again,
I found the regex I used to add spaces to my parentheses. Don't know if you've already written something or not, but this was what I'd use in my Find/Replace (without quotes, of course)
Find: "\((?! |\))"
Replace: "( "
Result:
(((test())))
becomes
( ( ( test())))
Find: "(?
2009-02-19 03:20:57 UTC in Flex Formatter
-
Hi Ernest,
Sorry about that. Yes, the currently implemented feature of adding spaces before and after the "=" satisfies that portion of my initial remark.
For part II, the changes I made were:
spaces are only *within* parentheses (not the surrounding items), and not within the closed parentheses like when calling a method() so
function(test:Object):void {
becomes
function( test:Object...
2009-02-19 02:55:20 UTC in Flex Formatter
-
I'll second this one. I have a slight modification though:
For this: x=((x+y)+z);
I would write it like this x = ( ( x + y ) + z );
and for this:
private test function ( arg : String ) : void
{
var xml : XML = new XML(); // empty, without changes
var obj : Object = { one : 1, two : 2 };
var arr : Array = [ 1, 2, 3 ]
}
I would write it like this:
private test function( arg:String...
2009-02-18 13:59:08 UTC in Flex Formatter