Login
demo.s2 at [14f5d7dee4]
Login

File s2/require.d/plugins/demo.s2 artifact aebec67c15 part of check-in 14f5d7dee4


return {
    isVirtual: true,
    foo: true,
    cacheIt: false,
    counter: 0,
    load: proc(name){
        print(__FLC,"Demo plugin: argv=",argv);
        this.lastArgs = argv;
        ++this.counter;
        return this;
    }
};