123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- "use strict";
- module.exports = {
- meta: {
- type: "suggestion",
- docs: {
- description: "require generator functions to contain `yield`",
- category: "ECMAScript 6",
- recommended: true,
- url: "https://eslint.org/docs/rules/require-yield"
- },
- schema: [],
- messages: {
- missingYield: "This generator function does not have 'yield'."
- }
- },
- create(context) {
- const stack = [];
-
- function beginChecking(node) {
- if (node.generator) {
- stack.push(0);
- }
- }
-
- function endChecking(node) {
- if (!node.generator) {
- return;
- }
- const countYield = stack.pop();
- if (countYield === 0 && node.body.body.length > 0) {
- context.report({ node, messageId: "missingYield" });
- }
- }
- return {
- FunctionDeclaration: beginChecking,
- "FunctionDeclaration:exit": endChecking,
- FunctionExpression: beginChecking,
- "FunctionExpression:exit": endChecking,
-
- YieldExpression() {
-
- if (stack.length > 0) {
- stack[stack.length - 1] += 1;
- }
- }
- };
- }
- };
|