amelentev / java-oo

Java Operator Overloading
http://amelentev.github.io/java-oo/
268 stars 31 forks source link

Eclipse-oo-plugin not working in Eclipse 4.4+ #26

Open masm64 opened 9 years ago

masm64 commented 9 years ago

I'll use Eclipse Luna and installed the Java-OO plugin. I'll use Java 7 and Java 8. The Editor shows always errors if there is an operator used.

b = 2, // with OO shows Type mismatch: Cannot convert from int to BigInteger.

c2 = -a + b*b + b/a; // with OO shows Multiple markers at this line

amelentev commented 9 years ago

Seems some problems with Equinox Weaving. Thanks. Will try to fix.

masm64 commented 9 years ago

Thank you. Great Plugin. Appreciate your work.

Am Mon, 26 Jan 2015 16:32:07 -0800 schrieb Artem Melentyev notifications@github.com:

Seems some problems with Equinox Weaving. Thanks. Will try to fix.


Reply to this email directly or view it on GitHub: https://github.com/amelentev/java-oo/issues/26#issuecomment-71568153

ghost commented 9 years ago

any update on this?

masm64 commented 9 years ago

Not yet.

juliusmh commented 8 years ago

It would be awesome if you could update your code for the new Eclipse 4.5.1+

MonaTheMonad commented 8 years ago

Any progress?

sollyucko commented 8 years ago

I also have Eclipse Luna Service Release 2 (4.4.2) and it's not working.

winterstein commented 8 years ago

I'm running Eclipse 4.5 -- the plugin doesn't seem to work there either. Which is a shame, as this looks great.

amelentev commented 8 years ago

I found a workaround:

  1. use eclipse distribution from http://scala-ide.org/ (4.4) or install scala plugin (from marketplace) to eclipse. tested 4.6.
  2. then install java-oo plugin.

So the problem is with plugin configuration. I cannot find how to enable Equinox Weaving on new eclipse platforms. scala plugin enables it somehow and everything else just works.