Ensure directives get printed in block statements (#4873)

This commit is contained in:
Brian Ng
2016-12-16 14:30:14 -06:00
committed by Henry Zhu
parent 2bbc36d25e
commit 01bc43464e
8 changed files with 37 additions and 8 deletions

View File

@@ -1 +1,3 @@
define("my custom module name", [], function () {});
define("my custom module name", [], function () {
"use strict";
});

View File

@@ -1 +1,3 @@
define(["foo", "foo-bar", "./directory/foo-bar"], function () {});
define(["foo", "foo-bar", "./directory/foo-bar"], function () {
"use strict";
});