vdom improvements

This commit is contained in:
Patrick Steele-Idem 2016-09-20 09:00:53 -06:00
parent cbd0b37ef2
commit 02176baf0a
4 changed files with 37 additions and 11 deletions

View File

@ -51,21 +51,23 @@ function requireResolve(builder, path) {
}
const helpers = {
'attr': 'a',
'attrs': 'as',
'classAttr': 'ca',
'classList': 'cl',
'createElement': 'e',
'escapeXml': 'x',
'escapeXmlAttr': 'xa',
'escapeScript': 'xs',
'str': 's',
'merge': 'm',
'classAttr': 'ca',
'styleAttr': 'sa',
'attr': 'a',
'attrs': 'as',
'loadTag': 't',
'forEachWithStatusVar': 'fv',
'forEach': 'f',
'forEachProp': 'fp',
'classList': 'cl',
'loadTemplate': 'l'
'forEachWithStatusVar': 'fv',
'loadTag': 't',
'loadTemplate': 'l',
'merge': 'm',
'str': 's',
'styleAttr': 'sa',
'createText': 't'
};
class CompileContext extends EventEmitter {

24
runtime/vdom/helpers.js Normal file
View File

@ -0,0 +1,24 @@
/*
* Copyright 2011 eBay Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
var markoVDOM = require('marko-vdom');
module.exports = {
e: markoVDOM.createElement,
t: markoVDOM.createText,
};

0
runtime/vdom/index.js Normal file
View File

View File

@ -1 +1 @@
module.exports = require('marko-vdom');
module.exports = require('./runtime/vdom');