@@ -27,6 +27,9 @@ export function template(templateSpec, env) {
|
||||
if (!env) {
|
||||
throw new Exception("No environment passed to template");
|
||||
}
|
||||
if (!templateSpec || !templateSpec.main) {
|
||||
throw new Exception('Unknown template object: ' + typeof templateSpec);
|
||||
}
|
||||
|
||||
// Note: Using env.VM references rather than local var references throughout this section to allow
|
||||
// for external users to override these as psuedo-supported APIs.
|
||||
@@ -151,6 +154,7 @@ export function template(templateSpec, env) {
|
||||
throw new Exception('_child can not be used with depthed methods');
|
||||
}
|
||||
|
||||
// TODO : Fix this
|
||||
return container.programWithDepth(i);
|
||||
};
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user