Sha256: d41b28eea8b366de116528ae774214232e566743558eac646105ac16ed86f957

Contents?: true

Size: 719 Bytes

Versions: 29

Compression:

Stored size: 719 Bytes

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Florent Cailhol @ooflorent
*/
"use strict";

const ConstDependency = require("./ConstDependency");

class HarmonyTopLevelThisParserPlugin {
	apply(parser) {
		parser.hooks.expression
			.for("this")
			.tap("HarmonyTopLevelThisParserPlugin", node => {
				if (!parser.scope.topLevelScope) return;
				const module = parser.state.module;
				const isHarmony = !!(module.buildMeta && module.buildMeta.exportsType);
				if (isHarmony) {
					const dep = new ConstDependency("undefined", node.range, false);
					dep.loc = node.loc;
					parser.state.current.addDependency(dep);
				}
			});
	}
}

module.exports = HarmonyTopLevelThisParserPlugin;

Version data entries

29 entries across 28 versions & 10 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
disco_app-0.18.0 test/dummy/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
disco_app-0.18.2 test/dummy/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
disco_app-0.16.1 test/dummy/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
disco_app-0.15.2 test/dummy/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
disco_app-0.18.4 test/dummy/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
disco_app-0.18.1 test/dummy/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
disco_app-0.14.0 test/dummy/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
tang-0.2.1 spec/tang_app/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
tang-0.2.0 spec/tang_app/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
tang-0.1.0 spec/tang_app/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
tang-0.0.9 spec/tang_app/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
enju_library-0.3.8 spec/dummy/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js
jester-data-8.0.0 node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js