What steps will reproduce the problem?
Adding the method body by defining the assembly source fully as a string where
opcode's operand is a string with spaces. For example:
pushstring abra kadabra
generate an error "has incorrect number of operands, ...".
What is the expected output? What do you see instead?
In this case, anly 2 tokens should be parsed, 'pushstring' and 'abra kadabra'.
What version of the product are you using? On what operating system?
FLash CS6, win 7 x64
Please provide any additional information below.
So, in function Asm.convert(), I've replaced following line
var rawParams:Array = token.value.split(SINGLE_SPACE);
with
var rawParams:Array = splitParams( token.value );
and created private method "splitParams". Now one can write operand like this:
pushstring "abra kadabra"
Modified Asm.as file in attachment.
Original issue reported on code.google.com by wojm...@gmail.com on 6 Jan 2013 at 12:55
Original issue reported on code.google.com by
wojm...@gmail.com
on 6 Jan 2013 at 12:55Attachments: