14 lines
302 B
Objective-C
14 lines
302 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#import "JSContextRef.h"
|
|
|
|
extern "C" {
|
|
|
|
void nativeProfilerEnableBytecode(void);
|
|
void nativeProfilerStart(JSContextRef ctx, const char *title);
|
|
void nativeProfilerEnd(JSContextRef ctx, const char *title, const char *filename);
|
|
|
|
}
|