All files / complex-js/compiler call.ts

0% Statements 0/30
100% Branches 0/0
100% Functions 0/0
0% Lines 0/30

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64                                                                                                                               
import abs from '../functions/abs';
import acos from '../functions/acos';
import acosh from '../functions/acosh';
import arg from '../functions/arg';
import asin from '../functions/asin';
import asinh from '../functions/asinh';
import atan from '../functions/atan';
import atanh from '../functions/atanh';
import cbrt from '../functions/cbrt';
import ceil from '../functions/ceil';
import conj from '../functions/conj';
import cos from '../functions/cos';
import cosh from '../functions/cosh';
import cube from '../functions/cube';
import exp from '../functions/exp';
import floor from '../functions/floor';
import imag from '../functions/imag';
import log from '../functions/log';
import random from '../functions/random';
import real from '../functions/real';
import round from '../functions/round';
import sign from '../functions/sign';
import sin from '../functions/sin';
import sinh from '../functions/sinh';
import sqrt from '../functions/sqrt';
import square from '../functions/square';
import tan from '../functions/tan';
import tanh from '../functions/tanh';
import trunc from '../functions/trunc';
 
export const callLookup = {
  abs,
  acos,
  acosh,
  arg,
  asin,
  asinh,
  atan,
  atanh,
  cbrt,
  ceil,
  conj,
  cos,
  cosh,
  cube,
  exp,
  floor,
  imag,
  log,
  random,
  real,
  round,
  sign,
  sin,
  sinh,
  sqrt,
  square,
  tan,
  tanh,
  trunc
};
 
export type Call = typeof callLookup;