We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wrap-method-calls.xsl
Now aoi is works only with "raw" xmir files. This approach causes some problems. For example issue #40. Example in this issue can be simplified:
aoi
[] > obj1 [] > attr1 1 > @ [x] > main x.attr1 > @
object main:
<o abstract="" line="13" name="main" pos="0"> <o line="13" name="x" pos="1"/> <o base="x" line="14" pos="2" ref="13"/> <o base=".attr1" line="14" method="" name="@" pos="3"/> </o>
Here aoi works fine and infers x as obj1.
x
obj1
[] > obj1 [] > attr1 1 > @ [x] > main attr1. > @ x
<o abstract="" line="12" name="main" pos="0"> <o line="12" name="x" pos="1"/> <o base=".attr1" line="13" name="@" pos="2"> <o base="x" line="14" pos="4" ref="12"/> </o> </o>
Here aoi doesn't work and can't infer x
It seems that the right solution is to use already optimized xmir files. Thus, xmir will be similar for programs with similar functionality.
Thus, all interaction with xmir needs to be reworked for using optimized with wrap-method-calls.xsl xmir.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Now
aoi
is works only with "raw" xmir files. This approach causes some problems. For example issue #40. Example in this issue can be simplified:Common dot notation
EO
xmir
object main:
Here
aoi
works fine and infersx
asobj1
.Vertical dot notation
EO
xmir
object main:
Here
aoi
doesn't work and can't inferx
Using
wrap-method-calls.xsl
optimisationIt seems that the right solution is to use already optimized xmir files. Thus, xmir will be similar for programs with similar functionality.
EO (common dot notation)
EO (vertical dot notation)
Optimized xmir (with
wrap-method-calls.xsl
)object main:
Thus, all interaction with xmir needs to be reworked for using optimized with
wrap-method-calls.xsl
xmir.The text was updated successfully, but these errors were encountered: