I found a function called object in the notorious DOORS DXL documentation. It shows this: Object object(int absno,Module m) When I try and use it I get this obtuse error message: -E- DXL: <Line:140> incorrectly concatenated tokens I get this message if I do object(10) or Object o = object(10) or int a = 10 Object o object = object(10) or Module m = read("some module", false) Object o o = object(10,m) Anyone know what the DXL error message is trying (or not trying) to tell me? Doorsbert - Wed Apr 01 21:48:19 EDT 2009 |
Re: object function Check your closing braces and parentheses in lines of code before this. |
Re: object function Anyway, that function doesn't generate an error (v8.1). I suspect you have defined a function named 'object(int X)' somewhere further up in the code; perhaps defined as type string. What version are you using? Perhaps you should supply then other 139 lines of code that preceed this. >Louie |