codefrau / SqueakJS

A Squeak Smalltalk VM in Javascript
https://squeak.js.org
MIT License
365 stars 75 forks source link

extend Locale plugin (stubs) #94

Closed pavel-krivanek closed 4 years ago

pavel-krivanek commented 4 years ago

We are missing the better LocalePlugin implementation for:

locale_primitiveTimezoneOffset
locale_primitiveTimezoneOffset

I used these stubs for now:

    locale_primitiveTimezoneOffset: function(argCount) {
        this.vm.popNandPush(argCount, 0);
        return true;
    },
    locale_primitiveTimezoneOffset: function(argCount) {
        this.vm.popNandPush(argCount, 0);
        return true;
    },
codefrau commented 4 years ago

are these 2 primitives with the same name?