Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118058035
NodeStuffInWebError.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jun 17, 10:36
Size
843 B
Mime Type
text/x-c++
Expires
Thu, Jun 19, 10:36 (2 d)
Engine
blob
Format
Raw Data
Handle
26833055
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
NodeStuffInWebError.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Ivan Kopeykin @vankop
*/
"use strict";
const WebpackError = require("./WebpackError");
const makeSerializable = require("./util/makeSerializable");
/** @typedef {import("./Dependency").DependencyLocation} DependencyLocation */
class NodeStuffInWebError extends WebpackError {
/**
* @param {DependencyLocation} loc loc
* @param {string} expression expression
* @param {string} description description
*/
constructor(loc, expression, description) {
super(
`${JSON.stringify(
expression
)} has been used, it will be undefined in next major version.
${description}`
);
this.name = "NodeStuffInWebError";
this.loc = loc;
}
}
makeSerializable(NodeStuffInWebError, "webpack/lib/NodeStuffInWebError");
module.exports = NodeStuffInWebError;
Event Timeline
Log In to Comment