(text)
| 1094 | } |
| 1095 | |
| 1096 | function warnOnce(text) { |
| 1097 | if (!warnOnce.shown) warnOnce.shown = {}; |
| 1098 | if (!warnOnce.shown[text]) { |
| 1099 | warnOnce.shown[text] = 1; |
| 1100 | if (ENVIRONMENT_IS_NODE) text = 'warning: ' + text; |
| 1101 | err(text); |
| 1102 | } |
| 1103 | } |
| 1104 | |
| 1105 | function setErrNo(value) { |
| 1106 | HEAP32[((___errno_location())>>2)] = value; |
no outgoing calls
no test coverage detected