implement opcodes in terms of editops

This commit is contained in:
Max Bachmann 2023-01-26 13:36:58 +01:00 committed by GitHub
parent a0b75e630e
commit 27dad0d566
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -347,4 +347,4 @@ def opcodes(
equal a[4:6] (cd) b[3:5] (cd)
insert a[6:6] () b[5:6] (f)
"""
raise NotImplementedError
return editops(s1, s2, processor=processor).as_opcodes()