FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
assemblyscript/tests/parser/string-binding.ts.fixture.ts at master · python6460/assemblyscript · GitHub
python6460
/
assemblyscript
Public
forked from
AssemblyScript/assemblyscript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
assemblyscript
/
tests
/
parser
/
string-binding.ts.fixture.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
65 lines (65 loc) · 2.24 KB
Breadcrumbs
assemblyscript
/
tests
/
parser
/
string-binding.ts.fixture.ts
Copy path
File metadata and controls
65 lines (65 loc) · 2.24 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
@
binding
(
BindingCall
.
NEW
,
[
BindingType
.
STRING
]
,
BindingType
.
OBJECT_HANDLE
)
export
class
ExternalString
{
@
binding
(
BindingCall
.
FUNCTION
,
[
BindingType
.
U32
,
BindingType
.
U32
]
,
BindingType
.
OBJECT_HANDLE
)
static
fromCharCode
(
char
:
u16
,
schar
?:
u16
=
<
u16
>
-
1
)
:
String
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
FUNCTION
,
[
BindingType
.
U32
]
,
BindingType
.
OBJECT_HANDLE
)
static
fromCodePoint
(
codepoint
:
u32
)
:
String
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
BindingType
.
U32
]
,
BindingType
.
OBJECT_HANDLE
)
charAt
(
index
:
u32
)
:
String
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
BindingType
.
U32
]
,
BindingType
.
PASS_THRU
)
charCodeAt
(
index
:
u32
)
:
u16
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
BindingType
.
U32
]
,
BindingType
.
PASS_THRU
)
codePointAt
(
index
:
u32
)
:
u32
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
BindingType
.
OBJECT_HANDLE
]
,
BindingType
.
OBJECT_HANDLE
)
@
operator
(
"+"
)
concat
(
other
:
String
)
:
String
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
BindingType
.
OBJECT_HANDLE
]
,
BindingType
.
PASS_THRU
)
endsWith
(
other
:
String
)
:
bool
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
BindingType
.
OBJECT_HANDLE
]
,
BindingType
.
PASS_THRU
)
indexOf
(
other
:
String
)
:
i32
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
BindingType
.
OBJECT_HANDLE
]
,
BindingType
.
PASS_THRU
)
startsWith
(
other
:
String
)
:
bool
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
BindingType
.
U32
,
BindingType
.
U32
]
,
BindingType
.
OBJECT_HANDLE
)
substr
(
start
:
i32
,
length
:
i32
)
:
String
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
BindingType
.
U32
,
BindingType
.
U32
]
,
BindingType
.
OBJECT_HANDLE
)
substring
(
start
:
i32
,
end
:
i32
)
:
String
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
]
,
BindingType
.
OBJECT_HANDLE
)
trim
(
)
:
String
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
]
,
BindingType
.
OBJECT_HANDLE
)
trimStart
(
)
:
String
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
]
,
BindingType
.
OBJECT_HANDLE
)
trimEnd
(
)
:
String
{
return
unreachable
(
)
;
}
@
binding
(
BindingCall
.
THIS
,
[
BindingType
.
OBJECT_HANDLE
]
,
BindingType
.
PASS_THRU
)
@
operator
(
"=="
)
equals
(
other
:
String
)
:
bool
{
return
unreachable
(
)
;
}
}
Back
|
FazBrowse Home
|
New Git URL