public String compile(String input, String location, boolean compress) throws LessException {
try {
return (String) Context.call(null, compile, scope, scope,
new Object[]{input, location, compress});
} catch (Exception e) {
throw new LessException(parseLessException(e));
}
}