Skip to content
Snippets Groups Projects
Select Git revision
  • 8fe19073cc045dce2ec76f1e1d323b00f829e848
  • dev default
  • 64-feat-blacklist-unwanted-concepts-from-output
  • 61-feature-add-optional-backwards-mapping-for-consistency-with-older-version-2
  • main protected
  • 11-test-fix-tests-to-handle-licensed-data-resources-from-trud-snd-omop
  • general
  • pypi
  • old-main
  • v0.0.3
10 results

config2.yml

Blame
  • DecrParser.java 387 B
    public class DecrParser extends Unary {
    
        public DecrParser() {
            super("decr");
        }
    
    
        @Override
        public void _execute() throws OperationError {
            setNewValue(getInterpreter().executeDecr(getVariable()));
        }
    
        @Override
        public String getChangeMessage() {
            return "Decremented " + getVariableString(getVariable()) + "to " + getNewValue();
        }
    }