Coder Social home page Coder Social logo

typedjs's Issues

Issue in test.js - function name

The last function in the test is documented as maybe_char, but the last function is actually char_first -- which is the same function name as the previous.

Issue in test.js - add_all()

The main web site indicates (as does the function name) that add_all() will return the sum of all numbers in an array. It only returns the value of the last item in the array.

The code expresses "count" as the value being modified -- but it's not a "count" per se, its a value of the last item in the array.

Contracts rather than Types

Rather than trying to stick to a type signature, why not expand the idea to do something similar to what Mozilla is doing with contracts.coffee and leverage the type signatures plus other options as a form of contracts? I'm sure this is similar to what is already done; the point is more to not limit only to mimicking a type system since you don't have to stop there.

jQuery required?

This is a very useful project, and I hope my thought here is taken in the context of my appreciation for what you've begun.

Do you intend to drop the jQuery dependency at some future point so that it can be used as part of a browserless development cycle? For example, I would like to be able to use TypedJS as a quick check inside a text editor/IDE to confirm that things check out, before heading to the browser. It would also be tremendously helpful to be able to do this for NodeJS code.

use java doc syntax

Any chance that we could use java docs - much more widely used IMHO than haskell-like
also means anyone who marked up fro google closure compiler can use this out the box

License choice

This looks interesting! But I think you might want to think more about your license choice; are you aware that the CC noncommercial license means that no-one at any company can use this code, even if they give back all of the changes they make to it? CC licenses are not usually used or recommended for source code.

(I'd recommend a BSD or AGPL license instead.)

Thanks.

Confusing syntax: addTest/go

I find this syntax (from the readme) confusing:

var test = TypedJS.addTest('concat :: String -> String -> String', concat);
TypedJS.go([test]);

The "addTest" function name suggests (to me) that TypedJS is maintaining an internal collection of the tests for which I'd expect to be able to call 'go' to run the current tests:

TypedJS.addTest('concat :: String -> String -> String', concat);
TypedJS.go();

Perhaps it would be more appropriate to rename "addTest" to "createTest" and "go" to "runTests"?

var tests = $.map([{
    name: concat,
    type: "concat :: String, String -> Boolean"},
{
    name: add,
    type: "add :: Number, Number -> Number"}], function(func) {
    return TypedJS.createTest(func.type, func.name);
});
TypedJS.runTests(tests);โ€‹

Char isn't a JavaScript type

It's useful but it really isn't a type in JS. There's just String, IMHO this feature should be opt-in/opt-out.

Also, would be nice to add 'RegExp', 'Date', and 'isNaN'

Pull request coming at some point when GH-6 is fixed.

object names that include numbers generate parse errors

For example:

test1a = function (a) { return true; }

tested with

test = TypedJS.addTest("test1a :: Number -> Boolean", test1a);
TypedJS.go([test]);

fails with:

Uncaught Error: Parse error on line 1:
//+test1a :: Number -> Numb
-------^
Expecting '::'

Objects: Enforce types on properties mentioned

It's a little late for me so I don't have a good code sample. I'll get one tomorrow.

In the meantime this seems to be failing:

//+ foo: { hello: String } -> String
function foo(o) {
    return o.hello;
}

foo({ hello: 'foo', world: 'bar' }); // will fail because world is not typed.

You could make an argument that it should throw a TypeError but I'd like for there to be an option.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.