| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /**
- * JS-grammar torture fixture (javascript variant: no type machinery, JS class
- * fields use `field_definition` with a `property` field).
- */
- import { EventEmitter } from 'node:events';
- const { promisify } = require('node:util');
- /** Legacy prototype-style helper. */
- function legacyHelper(a, b) {
- return a + b;
- }
- const arrow = (x) => legacyHelper(x, 1);
- class Widget extends EventEmitter {
- static registry = new Map();
- #privateField = 1;
- label = 'w';
- onTick = () => {
- this.render();
- };
- wrapped = debounce(function () {
- expensive();
- }, 50);
- constructor(opts) {
- super();
- this.opts = opts;
- register(this.onTick);
- }
- render() {
- paint(this.label);
- }
- static create(opts) {
- return new Widget(opts);
- }
- }
- // AMD-style wrapper — anonymous, but inner functions must still surface.
- (function () {
- function hiddenInner() {
- return 7;
- }
- hiddenInner();
- })();
- module.exports.makeWidget = function makeWidget(opts) {
- return Widget.create(opts);
- };
- // Vuex module shape (store-file signals: mutations + actions + getters).
- const mutations = {
- SET_USER(state, user) {
- state.user = user;
- },
- };
- const actions = {
- async loadUser({ commit }, id) {
- const user = await fetchUser(id);
- commit('SET_USER', user);
- },
- };
- export default {
- namespaced: true,
- state: () => ({ user: null }),
- mutations,
- actions,
- getters: {
- userName(state) {
- return state.user?.name;
- },
- },
- };
- // Initializer walks attributed to the declared symbol (#693). A plain call
- // leaked to the FILE node; a non-exported object literal was skipped outright.
- const eagerConfig = loadConfig();
- const handlerMap = { onSave: () => persist(eagerConfig), onLoad: loadConfig() };
- const lazyList = [() => persist(eagerConfig)];
- // --- CommonJS export assignments (#1675) -----------------------------------
- exports.getItems = async (req, res) => { res.json(await findItems()); };
- module.exports.deleteItem = function (req, res) { removeItem(req.params.id); res.end(); };
- exports.plain = 42;
- handlers.onSave = () => { persist(); };
- // --- call-expression receivers (#1683) ----------------------------------------
- function bucketChains(d, k, v) {
- d.setdefault(k, []).append(v);
- make().run();
- (0, make)().run();
- arr[0]().go();
- obj.make().run().again();
- }
|