@@ -855,7 +855,7 @@ describe('Lexer', () => {
855855 { type : '>>' , line : 1 } ,
856856 { type : 'eof' , line : 1 } ) ) ;
857857
858- it ( 'should tokenize an RDF* statement with IRIs' ,
858+ it ( 'should tokenize an RDF-star statement with IRIs' ,
859859 shouldTokenize ( '<<<http://ex.org/?bla#foo> \n\t<http://ex.org/?bla#bar> \n\t<http://ex.org/?bla#boo>>> .' ,
860860 { type : '<<' , line : 1 } ,
861861 { type : 'IRI' , value : 'http://ex.org/?bla#foo' , line : 1 } ,
@@ -865,7 +865,7 @@ describe('Lexer', () => {
865865 { type : '.' , line : 3 } ,
866866 { type : 'eof' , line : 3 } ) ) ;
867867
868- it ( 'should not tokenize a wrongly closed RDF* statement with IRIs' ,
868+ it ( 'should not tokenize a wrongly closed RDF-star statement with IRIs' ,
869869 shouldNotTokenize ( '<<<http://ex.org/?bla#foo> \n\t<http://ex.org/?bla#bar> \n\t<http://ex.org/?bla#boo>> .' ,
870870 'Unexpected ">" on line 3.' ) ) ;
871871
@@ -915,7 +915,7 @@ describe('Lexer', () => {
915915 shouldNotTokenize ( '<a> <b> <c> {| <d> [ <e> "f" ]; <f> <g> |' ,
916916 'Unexpected "|" on line 1.' ) ) ;
917917
918- it ( 'should tokenize a split RDF* statement with IRIs' ,
918+ it ( 'should tokenize a split RDF-star statement with IRIs' ,
919919 shouldTokenize ( streamOf ( '<' , '<<http://ex.org/?bla#foo> \n\t<http://ex.org/?bla#bar> \n\t<http://ex.org/?bla#boo>>> .' ) ,
920920 { type : '<<' , line : 1 } ,
921921 { type : 'IRI' , value : 'http://ex.org/?bla#foo' , line : 1 } ,
@@ -925,7 +925,7 @@ describe('Lexer', () => {
925925 { type : '.' , line : 3 } ,
926926 { type : 'eof' , line : 3 } ) ) ;
927927
928- it ( 'should tokenize an RDF* statement with string literals' ,
928+ it ( 'should tokenize an RDF-star statement with string literals' ,
929929 shouldTokenize ( '<<"string"@en "string"@nl-be "string"@EN>> .' ,
930930 { type : '<<' , line : 1 } ,
931931 { type : 'literal' , value : 'string' , line : 1 } ,
@@ -938,7 +938,7 @@ describe('Lexer', () => {
938938 { type : '.' , line : 1 } ,
939939 { type : 'eof' , line : 1 } ) ) ;
940940
941- it ( 'should tokenize an RDF* statement with integers' ,
941+ it ( 'should tokenize an RDF-star statement with integers' ,
942942 shouldTokenize ( '<<1 2 3>>.' ,
943943 { type : '<<' , line : 1 } ,
944944 { type : 'literal' , value : '1' , prefix : 'http://www.w3.org/2001/XMLSchema#integer' , line : 1 } ,
@@ -948,7 +948,7 @@ describe('Lexer', () => {
948948 { type : '.' , line : 1 } ,
949949 { type : 'eof' , line : 1 } ) ) ;
950950
951- it ( 'should tokenize an RDF* statement with decimals' ,
951+ it ( 'should tokenize an RDF-star statement with decimals' ,
952952 shouldTokenize ( '<<1.2 3.4 5.6>>.' ,
953953 { type : '<<' , line : 1 } ,
954954 { type : 'literal' , value : '1.2' , prefix : 'http://www.w3.org/2001/XMLSchema#decimal' , line : 1 } ,
@@ -958,7 +958,7 @@ describe('Lexer', () => {
958958 { type : '.' , line : 1 } ,
959959 { type : 'eof' , line : 1 } ) ) ;
960960
961- it ( 'should tokenize an RDF* statement with booleans' ,
961+ it ( 'should tokenize an RDF-star statement with booleans' ,
962962 shouldTokenize ( '<<true false true>>.' ,
963963 { type : '<<' , line : 1 } ,
964964 { type : 'literal' , value : 'true' , prefix : 'http://www.w3.org/2001/XMLSchema#boolean' , line : 1 } ,
@@ -975,7 +975,7 @@ describe('Lexer', () => {
975975 { type : '.' , line : 1 } ,
976976 { type : 'eof' , line : 1 } ) ) ;
977977
978- it ( 'should tokenize an RDF* statement with prefixed names' ,
978+ it ( 'should tokenize an RDF-star statement with prefixed names' ,
979979 shouldTokenize ( '<<a:a b:b c:c>> .' ,
980980 { type : '<<' , line : 1 } ,
981981 { type : 'prefixed' , prefix : 'a' , value : 'a' , line : 1 } ,
@@ -985,7 +985,7 @@ describe('Lexer', () => {
985985 { type : '.' , line : 1 } ,
986986 { type : 'eof' , line : 1 } ) ) ;
987987
988- it ( 'should tokenize an RDF* statement with blank nodes' ,
988+ it ( 'should tokenize an RDF-star statement with blank nodes' ,
989989 shouldTokenize ( '<<_:a _:b _:c>> .' ,
990990 { type : '<<' , line : 1 } ,
991991 { type : 'blank' , prefix : '_' , value : 'a' , line : 1 } ,
@@ -995,7 +995,7 @@ describe('Lexer', () => {
995995 { type : '.' , line : 1 } ,
996996 { type : 'eof' , line : 1 } ) ) ;
997997
998- it ( 'should tokenize an RDF* statement with variables' ,
998+ it ( 'should tokenize an RDF-star statement with variables' ,
999999 shouldTokenize ( '<<?a ?b ?c>> .' ,
10001000 { type : '<<' , line : 1 } ,
10011001 { type : 'var' , value : '?a' , line : 1 } ,
@@ -1005,7 +1005,7 @@ describe('Lexer', () => {
10051005 { type : '.' , line : 1 } ,
10061006 { type : 'eof' , line : 1 } ) ) ;
10071007
1008- it ( 'should tokenize an RDF* statement with mixed types' ,
1008+ it ( 'should tokenize an RDF-star statement with mixed types' ,
10091009 shouldTokenize ( '<<<http://ex.org/?bla#foo> "string"@nl-be c:c>> .' ,
10101010 { type : '<<' , line : 1 } ,
10111011 { type : 'IRI' , value : 'http://ex.org/?bla#foo' , line : 1 } ,
@@ -1016,7 +1016,7 @@ describe('Lexer', () => {
10161016 { type : '.' , line : 1 } ,
10171017 { type : 'eof' , line : 1 } ) ) ;
10181018
1019- it ( 'should tokenize an RDF* statement with mixed types' ,
1019+ it ( 'should tokenize an RDF-star statement with mixed types' ,
10201020 shouldTokenize ( '<<_:a a:a "string"@EN>> .' ,
10211021 { type : '<<' , line : 1 } ,
10221022 { type : 'blank' , prefix : '_' , value : 'a' , line : 1 } ,
@@ -1027,7 +1027,7 @@ describe('Lexer', () => {
10271027 { type : '.' , line : 1 } ,
10281028 { type : 'eof' , line : 1 } ) ) ;
10291029
1030- it ( 'should tokenize an RDF* statement with mixed types' ,
1030+ it ( 'should tokenize an RDF-star statement with mixed types' ,
10311031 shouldTokenize ( '<<"literal"@AU <http://ex.org/?bla#foo> _:a>> .' ,
10321032 { type : '<<' , line : 1 } ,
10331033 { type : 'literal' , value : 'literal' , line : 1 } ,
@@ -1038,7 +1038,7 @@ describe('Lexer', () => {
10381038 { type : '.' , line : 1 } ,
10391039 { type : 'eof' , line : 1 } ) ) ;
10401040
1041- it ( 'should tokenize RDF* statements with shared subjects' ,
1041+ it ( 'should tokenize RDF-star statements with shared subjects' ,
10421042 shouldTokenize ( '<<<a> <b> <c>;\n<d> <e>>>.' ,
10431043 { type : '<<' , line : 1 } ,
10441044 { type : 'IRI' , value : 'a' , line : 1 } ,
@@ -1051,7 +1051,7 @@ describe('Lexer', () => {
10511051 { type : '.' , line : 2 } ,
10521052 { type : 'eof' , line : 2 } ) ) ;
10531053
1054- it ( 'should tokenize RDF* statements with shared subjects and predicates' ,
1054+ it ( 'should tokenize RDF-star statements with shared subjects and predicates' ,
10551055 shouldTokenize ( '<<<a> <b> <c>,\n<d>>>.' ,
10561056 { type : '<<' , line : 1 } ,
10571057 { type : 'IRI' , value : 'a' , line : 1 } ,
@@ -1063,7 +1063,7 @@ describe('Lexer', () => {
10631063 { type : '.' , line : 2 } ,
10641064 { type : 'eof' , line : 2 } ) ) ;
10651065
1066- it ( 'should tokenize an RDF* statement with shared subjects and predicates and prefixed names' ,
1066+ it ( 'should tokenize an RDF-star statement with shared subjects and predicates and prefixed names' ,
10671067 shouldTokenize ( '<<a:a b:b c:c;d:d e:e,f:f>> .' ,
10681068 { type : '<<' , line : 1 } ,
10691069 { type : 'prefixed' , prefix : 'a' , value : 'a' , line : 1 } ,
0 commit comments