Skip to content

Commit

Permalink
Merge pull request #132 from Snapchat/lf/readme-n-include-fix
Browse files Browse the repository at this point in the history
Remove the mention of experimental features from readme
  • Loading branch information
li-feng-sc committed Feb 6, 2023
2 parents 768f108 + 1c4a40d commit f10f685
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,10 +267,10 @@ value known to the compiler at compile time, then there is no runtime
overhead. You may also call it with a dynamic value, in that case it's a fast
array indexing operation.

## Experimantal WASM support
## WASM support

Djinni can generate code that bridges C++ (that compiles to Web Assembly) and
Javascript/TypeScript in web browsers. This feature is currently experimental.
Javascript/TypeScript in web browsers.

For WASM, Djinni generates:
- C++ code, which should be compiled into the WASM bindary
Expand Down Expand Up @@ -305,10 +305,10 @@ The command to run Wasm/TypeScript unit tests is `bazel run
//test-suite:server-ts`. You will need the `tsc` compiler and the `browserify`
tool to run these tests.

## Experimental async interface support
## Async interface support

With the new yaml type `future<>` we can now write Djinni interfaces that
return results asynchronously more easily.
With the new yaml type `future<>` we can now write Djinni interfaces that return
results asynchronously more easily.

Instead of writing this:

Expand Down
3 changes: 1 addition & 2 deletions support-lib/cpp/DataView.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@

#pragma once

#include <cstddef>
#include <cstdint>
#include <functional>
#include <memory>

namespace djinni {

Expand Down

0 comments on commit f10f685

Please sign in to comment.