Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated pub/priv #234

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Updated pub/priv

Somethings are private that need to be public to embed the JS stuff in a higher level class
  • Loading branch information
valarauca committed Jan 17, 2016
commit 6c47a4909ca37a6c90b43d675bc5c5ec418266f0
@@ -24,19 +24,19 @@ extern crate rustc_serialize as serialize;

#[cfg(target_os = "linux")]
#[cfg(target_pointer_width = "64")]
mod jsapi_linux_64;
pub mod jsapi_linux_64;

#[cfg(target_os = "macos")]
#[cfg(target_pointer_width = "64")]
mod jsapi_macos_64;
pub mod jsapi_macos_64;

#[cfg(target_os = "windows")]
#[cfg(target_pointer_width = "64")]
mod jsapi_windows_gcc_64;
pub mod jsapi_windows_gcc_64;

#[cfg(not(target_os = "windows"))]
#[cfg(target_pointer_width = "32")]
mod jsapi_linux_32;
pub mod jsapi_linux_32;

pub mod jsapi {
#[cfg(target_os = "linux")]
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.