-
Notifications
You must be signed in to change notification settings - Fork 121
Added Glue for Functions with mozilla::Range
Parameters
#434
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
Open
redfire75369
wants to merge
7
commits into
servo:main
Choose a base branch
from
redfire75369:mozilla-range
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7754555
Modified `Range::new` to take Raw Pointers
redfire75369 c7c5a1d
Added Test for `mozilla::Range::new`
redfire75369 1ae106f
Added Glue for mozilla::Range Parameters
redfire75369 557eed8
Switched Glue Functions to Take In Pointers
redfire75369 47ca02c
Reformatted Code
redfire75369 ea24396
Removed Unnecessary Typedefs
redfire75369 8bc8cb4
Formatted C++ Code
redfire75369 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
use std::ptr; | ||
|
||
use mozjs::glue::{JS_StringToBigInt, JS_StringToBigInt1}; | ||
use mozjs::jsapi::mozilla::Range; | ||
use mozjs::jsapi::{BigIntIsUint64, JS_NewGlobalObject}; | ||
use mozjs::jsapi::{JSAutoRealm, OnNewGlobalHookOption}; | ||
use mozjs::rooted; | ||
use mozjs::rust::{JSEngine, RealmOptions, Runtime, SIMPLE_GLOBAL_CLASS}; | ||
|
||
#[test] | ||
fn range() { | ||
let engine = JSEngine::init().unwrap(); | ||
let runtime = Runtime::new(engine.handle()); | ||
let context = runtime.cx(); | ||
let h_option = OnNewGlobalHookOption::FireOnNewGlobalHook; | ||
let c_option = RealmOptions::default(); | ||
|
||
unsafe { | ||
rooted!(in(context) let global = JS_NewGlobalObject( | ||
context, | ||
&SIMPLE_GLOBAL_CLASS, | ||
ptr::null_mut(), | ||
h_option, | ||
&*c_option, | ||
)); | ||
let _ac = JSAutoRealm::new(context, global.get()); | ||
|
||
// Number.MAX_SAFE_INTEGER + 10 | ||
let int = 9007199254741001; | ||
let mut string = int.to_string(); | ||
let range = string.as_bytes_mut().as_mut_ptr_range(); | ||
let chars = Range::new(range.start, range.end); | ||
rooted!(in(context) let bigint = JS_StringToBigInt(context, &chars)); | ||
assert!(!bigint.get().is_null()); | ||
|
||
let mut result = 0; | ||
assert!(BigIntIsUint64(bigint.get(), &mut result)); | ||
assert_eq!(result, int); | ||
|
||
let mut chars: Vec<_> = string.encode_utf16().collect(); | ||
let range = chars.as_mut_ptr_range(); | ||
let chars = Range::new(range.start, range.end); | ||
rooted!(in(context) let bigint = JS_StringToBigInt1(context, &chars)); | ||
assert!(!bigint.get().is_null()); | ||
|
||
let mut result = 0; | ||
assert!(BigIntIsUint64(bigint.get(), &mut result)); | ||
assert_eq!(result, int); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.