jmltoolkit / jmlparser

A Parser for JML and Java.
https://wadoon.github.io/jmlparser/
GNU Lesser General Public License v3.0
5 stars 1 forks source link

Spacing issue for ghost variables #118

Open samysweb opened 5 months ago

samysweb commented 5 months ago

Ghost JML code was missing a space.

Example:

public class Mult {
    public int mult (int x, int y){
    //@ ghost int oldx = x;
        return 1
    }
}

Was printed as:

public class Mult {
    public int mult (int x, int y){
    //@ ghostint oldx = x;
        return 1
    }
}