[swfinterp] Implement equals opcode

This commit is contained in:
Philipp Hagemeister 2014-11-17 04:27:51 +01:00
parent 3cbcff8a2d
commit eb5376044c
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,10 @@
// input: []
// output: false
package {
public class EqualsOperator {
public static function main():Boolean{
return 1 == 2;
}
}
}