Skip to content

Commit

Permalink
Add json module
Browse files Browse the repository at this point in the history
This implements the `json` module as specified in
[EEP 68](https:/erlang/eep/blob/master/eeps/eep-0068.md).
  • Loading branch information
michalmuskala committed Feb 27, 2024
1 parent efb7a92 commit 67792d2
Show file tree
Hide file tree
Showing 326 changed files with 2,301 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/stdlib/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ MODULES= \
io_lib_format \
io_lib_fread \
io_lib_pretty \
json \
lists \
log_mf_h \
maps \
Expand Down Expand Up @@ -141,7 +142,7 @@ HRL_FILES= \
../include/qlc.hrl \
../include/zip.hrl

INTERNAL_HRL_FILES= dets.hrl erl_tar.hrl otp_internal.hrl
INTERNAL_HRL_FILES= dets.hrl erl_tar.hrl otp_internal.hrl json.hrl

ERL_FILES= $(MODULES:%=%.erl)

Expand Down Expand Up @@ -182,7 +183,7 @@ endif
# Targets
# ----------------------------------------------------

$(TYPES): $(TARGET_FILES)
$(TYPES): $(TARGET_FILES)

clean:
rm -f $(TARGET_FILES)
Expand Down Expand Up @@ -270,6 +271,7 @@ $(EBIN)/gen_event.beam: ../../kernel/include/logger.hrl
$(EBIN)/gen_fsm.beam: ../../kernel/include/logger.hrl
$(EBIN)/gen_server.beam: ../../kernel/include/logger.hrl
$(EBIN)/gen_statem.beam: ../../kernel/include/logger.hrl
$(EBIN)/json.beam: json.hrl
$(EBIN)/proc_lib.beam: ../../kernel/include/logger.hrl
$(EBIN)/qlc_pt.beam: ../include/ms_transform.hrl
$(EBIN)/shell.beam: ../../kernel/include/file.hrl
Expand Down
Loading

0 comments on commit 67792d2

Please sign in to comment.