Let
- Determine
$a$ - Prove that there exists a line
$y = b$ , such that there are three different intersections of$y = b$ ,$y = f(x)$ and$y = g(x)$ , and the x-coordinates of these points form an arithmatic sequence
/** | |
input | |
``` | |
import * as t from "@babel/types" | |
t.isIdentifier(node) | |
``` | |
output | |
``` |
Let
class CaptureFactory { | |
static *id(fn) { | |
yield fn; | |
} | |
} | |
function dummy() {} | |
class C {} | |
class A extends CaptureFactory { |