File: sources

package info (click to toggle)
libnginx-mod-js 0.8.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,808 kB
  • sloc: ansic: 114,096; perl: 8,447; javascript: 2,520; exp: 487; sh: 322; xml: 312; python: 181; makefile: 18
file content (81 lines) | stat: -rw-r--r-- 1,779 bytes parent folder | download
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
NJS_LIB_SRCS=" \
   src/njs_diyfp.c \
   src/njs_dtoa.c \
   src/njs_dtoa_fixed.c \
   src/njs_str.c \
   src/njs_strtod.c \
   src/njs_murmur_hash.c \
   src/njs_djb_hash.c \
   src/njs_utf8.c \
   src/njs_utf16.c \
   src/njs_arr.c \
   src/njs_rbtree.c \
   src/njs_flathsh.c \
   src/njs_trace.c \
   src/njs_random.c \
   src/njs_malloc.c \
   src/njs_mp.c \
   src/njs_sprintf.c \
   src/njs_utils.c \
   src/njs_chb.c \
   src/njs_value.c \
   src/njs_vm.c \
   src/njs_vmcode.c \
   src/njs_lexer.c \
   src/njs_lexer_keyword.c \
   src/njs_parser.c \
   src/njs_variable.c \
   src/njs_scope.c \
   src/njs_generator.c \
   src/njs_disassembler.c \
   src/njs_module.c \
   src/njs_extern.c \
   src/njs_boolean.c \
   src/njs_number.c \
   src/njs_symbol.c \
   src/njs_string.c \
   src/njs_object.c \
   src/njs_object_prop.c \
   src/njs_array.c \
   src/njs_json.c \
   src/njs_function.c \
   src/njs_regexp.c \
   src/njs_date.c \
   src/njs_error.c \
   src/njs_math.c \
   src/njs_array_buffer.c \
   src/njs_typed_array.c \
   src/njs_promise.c \
   src/njs_encoding.c \
   src/njs_iterator.c \
   src/njs_async.c \
   src/njs_builtin.c \
"

QJS_LIB_SRCS=" \
	src/qjs.c   \
"

NJS_LIB_TEST_SRCS=" \
   src/test/lvlhsh_unit_test.c \
   src/test/random_unit_test.c \
   src/test/rbtree_unit_test.c \
   src/test/unicode_unit_test.c \
"

NJS_TEST_SRCS=" \
   src/test/njs_unit_test.c \
   src/test/njs_benchmark.c \
"

if [ "$NJS_PCRE" = "YES" ]; then
	NJS_LIB_SRCS="$NJS_LIB_SRCS external/njs_regex.c"
fi

if [ "$NJS_HAVE_LIBBFD" = "YES" -a "$NJS_HAVE_DL_ITERATE_PHDR" = "YES" ]; then
	NJS_LIB_SRCS="$NJS_LIB_SRCS src/njs_addr2line.c"
fi

NJS_TS_SRCS=$(find ts/ -name "*.d.ts" -o -name "*.json")

NJS_TEST_TS_SRCS=$(find test/ts/ -name "*.ts" -o -name "*.json")