/* 
 * File:   versionspass.h
 * Author: v.melnychenko@xreate.org
 *
 * Created on January 4, 2017, 3:09 PM
 */

#ifndef VERSIONSPASS_H
#define VERSIONSPASS_H

namespace xreate {
    class VersionsPass: public AbstractPass<void> {
        void process(const Expression& expression, PassContext context, const std::string& varDecl="") override;
    };
}

#endif /* VERSIONSPASS_H */

