536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
18 lines
323 B
C#
18 lines
323 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace Monodoc.Ecma
|
|
{
|
|
public class EcmaUrlParserDriver
|
|
{
|
|
public static void Main (string[] args)
|
|
{
|
|
var input = new StringReader (args[0]);
|
|
var lexer = new EcmaUrlTokenizer (input);
|
|
var parser = new EcmaUrlParser ();
|
|
|
|
Console.WriteLine (parser.yyparse (lexer));
|
|
}
|
|
}
|
|
}
|