This commit is contained in:
Michal Moskal 2015-04-27 18:00:42 -07:00
Родитель adf76a3770
Коммит 1dcbf643cc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -51,7 +51,7 @@ module TDev {
// [ ..., JComment { text: "{shim:VALUE}" }, ... ] -> VALUE
function isShimBody(body: J.JStmt[]): string {
var ret = null;
body.foreach((s: J.JStmt) => {
body.forEach((s: J.JStmt) => {
var matches = s.nodeType == "comment" && (<J.JComment> s).text.match(/^{shim:([^}]+)}$/);
if (matches)
ret = matches[1];