| Index: src/shared/natives.h
|
| diff --git a/src/shared/natives.h b/src/shared/natives.h
|
| index 2e8c3f3229857e247abe3ff2d2850ba14e2388c1..064542c1cca92861cf3c63ec8050245c7fb15397 100644
|
| --- a/src/shared/natives.h
|
| +++ b/src/shared/natives.h
|
| @@ -135,6 +135,11 @@ namespace fletch {
|
| N(StopwatchFrequency, "Stopwatch", "_frequency") \
|
| N(StopwatchNow, "Stopwatch", "_now") \
|
| \
|
| + N(ForeignLibraryLookup, "ForeignLibrary", "_lookupLibrary") \
|
| + N(ForeignLibraryClose, "ForeignLibrary", "_closeLibrary") \
|
| + N(ForeignLibraryGetFunction, "ForeignLibrary", "_lookupFunction") \
|
| + N(ForeignLibraryBundlePath, "ForeignLibrary", "_bundlePath") \
|
| + \
|
| N(ForeignLookup, "Foreign", "_lookup") \
|
| N(ForeignAllocate, "Foreign", "_allocate") \
|
| N(ForeignFree, "Foreign", "_free") \
|
| @@ -183,11 +188,11 @@ namespace fletch {
|
| N(ForeignSetUint32, "Foreign", "_setUint32") \
|
| N(ForeignSetUint64, "Foreign", "_setUint64") \
|
| \
|
| - N(ForeignGetFloat32, "Foreign", "_getFloat32") \
|
| - N(ForeignGetFloat64, "Foreign", "_getFloat64") \
|
| + N(ForeignGetFloat32, "Foreign", "_getFloat32") \
|
| + N(ForeignGetFloat64, "Foreign", "_getFloat64") \
|
| \
|
| - N(ForeignSetFloat32, "Foreign", "_setFloat32") \
|
| - N(ForeignSetFloat64, "Foreign", "_setFloat64") \
|
| + N(ForeignSetFloat32, "Foreign", "_setFloat32") \
|
| + N(ForeignSetFloat64, "Foreign", "_setFloat64") \
|
| \
|
| N(StringAdd, "_StringImpl", "+") \
|
| N(StringCodeUnitAt, "_StringImpl", "codeUnitAt") \
|
|
|