Block or Report
Block or report bakkot
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
-
-
unix-socket-protobuf Public
Protocol Buffers over Unix domain sockets - a toy implementation in three languages
-
cfgrammar-tool Public
Work with context-free grammars. Parsing, string generation, and manipulation.
-
-
1,234 contributions in the last year
Activity overview
Contribution activity
August 2022
Created 16 commits in 6 repositories
Created a pull request in engine262/engine262 that received 1 comment
only coerce once in BigInt constructor
This implements the change from tc39/ecma262#2812. Test262 PR is at tc39/test262#3631.
+2
−2
•
1
comment
Opened 8 other pull requests in 5 repositories
shapesecurity/shift-java
3
merged
tc39/ecma262
2
open
shapesecurity/salvation
1
merged
tc39/proposal-iterator-helpers
1
open
tc39/test262
1
merged
Reviewed 30 pull requests in 7 repositories
tc39/ecma262
19 pull requests
- Editorial: consistency in phrasing of ranges and inclusivity/exclusivity
-
Editorial: properly define and
<dfn>
spec enums - fixes #2405: clarify spec values that have identity and its implications
- Normative: Guard IntegerIndexedElementSet with receiver check
- Editorial: Revert unintentional normative change for String.prototype.substr
- Editorial: Differentiate code point identity (U+…) from value (MV, usually hex)
- Editorial: Capitalize Environment Record subtype names
- Editorial: Use StringPad rather than "padded" prose
- Editorial: Consistify miscellaneous phrases
- Normative: remove tables of Unicode property values and aliases
- Editorial: GetValue and PutValue do not need to unwrap Completion Records
- Normative: allow host exotic objects to reject private fields
- Normative: Always check regular expression flags by "flags"
- Editorial: move RegExpHasFlag out of the dotAll section
- Normative: Clarify validity of negative expanded year 0.
- Editorial: change dfn for "mathematical value" and add "mathematical value of"
-
Meta:
npm update ws json-schema lodash jsdom ajv
- Meta: fix ipr-check; incorporate emeriti
- Editorial: Consistify prose for intrinsic functions
tc39/proposal-iterator-helpers
3 pull requests
DefinitelyTyped/DefinitelyTyped
2 pull requests
tc39/proposal-is-usv-string
2 pull requests
tc39/test262
2 pull requests
tc39/proposal-intl-numberformat-v3
1 pull request
shapesecurity/shift-java
1 pull request
Created an issue in tc39/proposal-iterator-helpers that received 5 comments
.take
should close the underlying iterator as soon as the final item is taken
Right now if you do
let bounded = iter.take(3);
bounded.next();
bounded.next();
bounded.next();
this will not close iter
. You have to call bounded.…
5
comments