Browse Source

[swfinterp] Implement equals opcode

totalwebcasting
Philipp Hagemeister 10 years ago
parent
commit
eb5376044c
2 changed files with 15 additions and 0 deletions
  1. +10
    -0
      test/swftests/EqualsOperator.as
  2. +5
    -0
      youtube_dl/swfinterp.py

+ 10
- 0
test/swftests/EqualsOperator.as View File

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

+ 5
- 0
youtube_dl/swfinterp.py View File

@ -629,6 +629,11 @@ class SWFInterpreter(object):
value1 = stack.pop() value1 = stack.pop()
res = value1 % value2 res = value1 % value2
stack.append(res) stack.append(res)
elif opcode == 171: # equals
value2 = stack.pop()
value1 = stack.pop()
result = value1 == value2
stack.append(result)
elif opcode == 175: # greaterequals elif opcode == 175: # greaterequals
value2 = stack.pop() value2 = stack.pop()
value1 = stack.pop() value1 = stack.pop()


Loading…
Cancel
Save