smartcaveman / runsharp-google-export

Automatically exported from code.google.com/p/runsharp
MIT License
0 stars 0 forks source link

EmitAddressOf for Property #31

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Exception when emitting
g.If(myOperand.Property("Count").Invoke("Equals",myOperand2));

Workaround is 
g.If(g.Local(myOperand.Property("Count")).Invoke("Equals",myOperand2));

Original issue reported on code.google.com by vlad.v...@gmail.com on 19 Jan 2013 at 10:28