this repo has no description
1# Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com)
2from .opcode38 import opcode as opcode38
3from .opcodebase import Opcode
4
5opcode: Opcode = opcode38.copy()
6opcode.def_op("LOAD_METHOD_SUPER", 198)
7opcode.hasconst.add(198)
8opcode.def_op("LOAD_ATTR_SUPER", 199)
9opcode.hasconst.add(199)
10
11opcode.stack_effects["LOAD_METHOD_SUPER"] = -1
12opcode.stack_effects["LOAD_ATTR_SUPER"] = -2