Re: [Pharo-users] MetaLink>>level: failing?

2018-11-22 Thread Vitor Medina Cruz
It works like a charm now!!! Thanks! On Tue, Nov 13, 2018 at 11:23 AM Marcus Denker wrote: > More progress… in the latest Pharo7 this is now working... (#operation > reifies the original operation): > > | link choice | > > choice := true. > link := MetaLink new metaObject: [ :operation | >

Re: [Pharo-users] MetaLink>>level: failing?

2018-11-13 Thread Marcus Denker
More progress… in the latest Pharo7 this is now working... (#operation reifies the original operation): | link choice | choice := true. link := MetaLink new metaObject: [ :operation | UIManager default alert: 'Linked Version'.

Re: [Pharo-users] MetaLink>>level: failing?

2018-11-07 Thread Marcus Denker
Hi, I added https://pharo.fogbugz.com/f/cases/22642/instead-links-and-meta-level-original-code-not-executed as a workaround, you can use a #before link with an explicit return: choice := true. link := MetaLink new metaObject: [ :object :selector :arguments :context |

Re: [Pharo-users] MetaLink>>level: failing?

2018-11-07 Thread Marcus Denker
Hello, I added a fist issue (and fix) for parts of the problem https://pharo.fogbugz.com/f/cases/22641/Semantic-analysis-needs-to-take-instead-preambles-into-account https://github.com/pharo-project/pharo/pull/1960 But after this, it does not work as the level just turns off calling the meta

Re: [Pharo-users] MetaLink>>level: failing?

2018-10-31 Thread Vitor Medina Cruz
Thanks! Is there an issue on fogbuzz where I can be notified of resolution? Do you need me to create it? After that how can update the code? Software update is safe or should I create a new image? regards, Vitor On Mon, Oct 29, 2018 at 12:08 PM Marcus Denker wrote: > > > On 25 Oct 2018, at

Re: [Pharo-users] MetaLink>>level: failing?

2018-10-29 Thread Marcus Denker
> On 25 Oct 2018, at 01:33, Vitor Medina Cruz wrote: > > Hello, > > I am playing with MetaLink, really cool!, but I am having issues that I am > unsure if it's some erro or if I am doing something wrong (I am using Pharo > 6.1 32 bits in windows.). Consider: > > TestMetaLink>>execute >

[Pharo-users] MetaLink>>level: failing?

2018-10-24 Thread Vitor Medina Cruz
Hello, I am playing with MetaLink, really cool!, but I am having issues that I am unsure if it's some erro or if I am doing something wrong (I am using Pharo 6.1 32 bits in windows.). Consider: TestMetaLink>>execute UIManager default alert: 'Actual Version'. And in Playground: | link |